diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2023-06-10 17:49:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-10 22:49:12 +0000 |
commit | b4a252fba81f53631c07ca40ce7583f5d19a8a36 (patch) | |
tree | 6fc21ea8b586f9b1eafd7525da6b8bdc9b4ea7f5 /test/test_jsinterp.py | |
parent | 4f7b11cc1c1cebf598107e00cd7295588ed484da (diff) | |
download | hypervideo-pre-b4a252fba81f53631c07ca40ce7583f5d19a8a36.tar.lz hypervideo-pre-b4a252fba81f53631c07ca40ce7583f5d19a8a36.tar.xz hypervideo-pre-b4a252fba81f53631c07ca40ce7583f5d19a8a36.zip |
[jsinterp] Fix division (#7279)
* Fixes nsig decryption for Youtube JS player `8c7583ff`
Authored by: bashonly
Diffstat (limited to 'test/test_jsinterp.py')
-rw-r--r-- | test/test_jsinterp.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_jsinterp.py b/test/test_jsinterp.py index 4d44e6efe..b01477e6f 100644 --- a/test/test_jsinterp.py +++ b/test/test_jsinterp.py @@ -28,6 +28,13 @@ class TestJSInterpreter(unittest.TestCase): def test_calc(self): self._test('function f(a){return 2*a+1;}', 7, args=[3]) + def test_div(self): + jsi = JSInterpreter('function f(a, b){return a / b;}') + self.assertTrue(math.isnan(jsi.call_function('f', 0, 0))) + self.assertTrue(math.isnan(jsi.call_function('f', JS_Undefined, 1))) + self.assertTrue(math.isinf(jsi.call_function('f', 2, 0))) + self.assertEqual(jsi.call_function('f', 0, 3), 0) + def test_empty_return(self): self._test('function f(){return; y()}', None) |