test_jsinterp.py 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. #!/usr/bin/env python3
  2. # Allow direct execution
  3. import os
  4. import sys
  5. import unittest
  6. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  7. import math
  8. from yt_dlp.jsinterp import JS_Undefined, JSInterpreter, js_number_to_string
  9. class NaN:
  10. pass
  11. class TestJSInterpreter(unittest.TestCase):
  12. def _test(self, jsi_or_code, expected, func='f', args=()):
  13. if isinstance(jsi_or_code, str):
  14. jsi_or_code = JSInterpreter(jsi_or_code)
  15. got = jsi_or_code.call_function(func, *args)
  16. if expected is NaN:
  17. self.assertTrue(math.isnan(got), f'{got} is not NaN')
  18. else:
  19. self.assertEqual(got, expected)
  20. def test_basic(self):
  21. jsi = JSInterpreter('function f(){;}')
  22. self.assertEqual(repr(jsi.extract_function('f')), 'F<f>')
  23. self._test(jsi, None)
  24. self._test('function f(){return 42;}', 42)
  25. self._test('function f(){42}', None)
  26. self._test('var f = function(){return 42;}', 42)
  27. def test_add(self):
  28. self._test('function f(){return 42 + 7;}', 49)
  29. self._test('function f(){return 42 + undefined;}', NaN)
  30. self._test('function f(){return 42 + null;}', 42)
  31. def test_sub(self):
  32. self._test('function f(){return 42 - 7;}', 35)
  33. self._test('function f(){return 42 - undefined;}', NaN)
  34. self._test('function f(){return 42 - null;}', 42)
  35. def test_mul(self):
  36. self._test('function f(){return 42 * 7;}', 294)
  37. self._test('function f(){return 42 * undefined;}', NaN)
  38. self._test('function f(){return 42 * null;}', 0)
  39. def test_div(self):
  40. jsi = JSInterpreter('function f(a, b){return a / b;}')
  41. self._test(jsi, NaN, args=(0, 0))
  42. self._test(jsi, NaN, args=(JS_Undefined, 1))
  43. self._test(jsi, float('inf'), args=(2, 0))
  44. self._test(jsi, 0, args=(0, 3))
  45. def test_mod(self):
  46. self._test('function f(){return 42 % 7;}', 0)
  47. self._test('function f(){return 42 % 0;}', NaN)
  48. self._test('function f(){return 42 % undefined;}', NaN)
  49. def test_exp(self):
  50. self._test('function f(){return 42 ** 2;}', 1764)
  51. self._test('function f(){return 42 ** undefined;}', NaN)
  52. self._test('function f(){return 42 ** null;}', 1)
  53. self._test('function f(){return undefined ** 42;}', NaN)
  54. def test_calc(self):
  55. self._test('function f(a){return 2*a+1;}', 7, args=[3])
  56. def test_empty_return(self):
  57. self._test('function f(){return; y()}', None)
  58. def test_morespace(self):
  59. self._test('function f (a) { return 2 * a + 1 ; }', 7, args=[3])
  60. self._test('function f () { x = 2 ; return x; }', 2)
  61. def test_strange_chars(self):
  62. self._test('function $_xY1 ($_axY1) { var $_axY2 = $_axY1 + 1; return $_axY2; }',
  63. 21, args=[20], func='$_xY1')
  64. def test_operators(self):
  65. self._test('function f(){return 1 << 5;}', 32)
  66. self._test('function f(){return 2 ** 5}', 32)
  67. self._test('function f(){return 19 & 21;}', 17)
  68. self._test('function f(){return 11 >> 2;}', 2)
  69. self._test('function f(){return []? 2+3: 4;}', 5)
  70. self._test('function f(){return 1 == 2}', False)
  71. self._test('function f(){return 0 && 1 || 2;}', 2)
  72. self._test('function f(){return 0 ?? 42;}', 0)
  73. self._test('function f(){return "life, the universe and everything" < 42;}', False)
  74. self._test('function f(){return 0 - 7 * - 6;}', 42)
  75. self._test('function f(){return true << "5";}', 32)
  76. self._test('function f(){return true << true;}', 2)
  77. self._test('function f(){return "19" & "21.9";}', 17)
  78. self._test('function f(){return "19" & false;}', 0)
  79. self._test('function f(){return "11.0" >> "2.1";}', 2)
  80. self._test('function f(){return 5 ^ 9;}', 12)
  81. self._test('function f(){return 0.0 << NaN}', 0)
  82. self._test('function f(){return null << undefined}', 0)
  83. # TODO: Does not work due to number too large
  84. # self._test('function f(){return 21 << 4294967297}', 42)
  85. def test_array_access(self):
  86. self._test('function f(){var x = [1,2,3]; x[0] = 4; x[0] = 5; x[2.0] = 7; return x;}', [5, 2, 7])
  87. def test_parens(self):
  88. self._test('function f(){return (1) + (2) * ((( (( (((((3)))))) )) ));}', 7)
  89. self._test('function f(){return (1 + 2) * 3;}', 9)
  90. def test_quotes(self):
  91. self._test(R'function f(){return "a\"\\("}', R'a"\(')
  92. def test_assignments(self):
  93. self._test('function f(){var x = 20; x = 30 + 1; return x;}', 31)
  94. self._test('function f(){var x = 20; x += 30 + 1; return x;}', 51)
  95. self._test('function f(){var x = 20; x -= 30 + 1; return x;}', -11)
  96. @unittest.skip('Not implemented')
  97. def test_comments(self):
  98. self._test('''
  99. function f() {
  100. var x = /* 1 + */ 2;
  101. var y = /* 30
  102. * 40 */ 50;
  103. return x + y;
  104. }
  105. ''', 52)
  106. self._test('''
  107. function f() {
  108. var x = "/*";
  109. var y = 1 /* comment */ + 2;
  110. return y;
  111. }
  112. ''', 3)
  113. def test_precedence(self):
  114. self._test('''
  115. function f() {
  116. var a = [10, 20, 30, 40, 50];
  117. var b = 6;
  118. a[0]=a[b%a.length];
  119. return a;
  120. }
  121. ''', [20, 20, 30, 40, 50])
  122. def test_builtins(self):
  123. self._test('function f() { return NaN }', NaN)
  124. def test_date(self):
  125. self._test('function f() { return new Date("Wednesday 31 December 1969 18:01:26 MDT") - 0; }', 86000)
  126. jsi = JSInterpreter('function f(dt) { return new Date(dt) - 0; }')
  127. self._test(jsi, 86000, args=['Wednesday 31 December 1969 18:01:26 MDT'])
  128. self._test(jsi, 86000, args=['12/31/1969 18:01:26 MDT']) # m/d/y
  129. self._test(jsi, 0, args=['1 January 1970 00:00:00 UTC'])
  130. def test_call(self):
  131. jsi = JSInterpreter('''
  132. function x() { return 2; }
  133. function y(a) { return x() + (a?a:0); }
  134. function z() { return y(3); }
  135. ''')
  136. self._test(jsi, 5, func='z')
  137. self._test(jsi, 2, func='y')
  138. def test_if(self):
  139. self._test('''
  140. function f() {
  141. let a = 9;
  142. if (0==0) {a++}
  143. return a
  144. }
  145. ''', 10)
  146. self._test('''
  147. function f() {
  148. if (0==0) {return 10}
  149. }
  150. ''', 10)
  151. self._test('''
  152. function f() {
  153. if (0!=0) {return 1}
  154. else {return 10}
  155. }
  156. ''', 10)
  157. """ # Unsupported
  158. self._test('''
  159. function f() {
  160. if (0!=0) {return 1}
  161. else if (1==0) {return 2}
  162. else {return 10}
  163. }
  164. ''', 10)
  165. """
  166. def test_for_loop(self):
  167. self._test('function f() { a=0; for (i=0; i-10; i++) {a++} return a }', 10)
  168. def test_switch(self):
  169. jsi = JSInterpreter('''
  170. function f(x) { switch(x){
  171. case 1:x+=1;
  172. case 2:x+=2;
  173. case 3:x+=3;break;
  174. case 4:x+=4;
  175. default:x=0;
  176. } return x }
  177. ''')
  178. self._test(jsi, 7, args=[1])
  179. self._test(jsi, 6, args=[3])
  180. self._test(jsi, 0, args=[5])
  181. def test_switch_default(self):
  182. jsi = JSInterpreter('''
  183. function f(x) { switch(x){
  184. case 2: x+=2;
  185. default: x-=1;
  186. case 5:
  187. case 6: x+=6;
  188. case 0: break;
  189. case 1: x+=1;
  190. } return x }
  191. ''')
  192. self._test(jsi, 2, args=[1])
  193. self._test(jsi, 11, args=[5])
  194. self._test(jsi, 14, args=[9])
  195. def test_try(self):
  196. self._test('function f() { try{return 10} catch(e){return 5} }', 10)
  197. def test_catch(self):
  198. self._test('function f() { try{throw 10} catch(e){return 5} }', 5)
  199. def test_finally(self):
  200. self._test('function f() { try{throw 10} finally {return 42} }', 42)
  201. self._test('function f() { try{throw 10} catch(e){return 5} finally {return 42} }', 42)
  202. def test_nested_try(self):
  203. self._test('''
  204. function f() {try {
  205. try{throw 10} finally {throw 42}
  206. } catch(e){return 5} }
  207. ''', 5)
  208. def test_for_loop_continue(self):
  209. self._test('function f() { a=0; for (i=0; i-10; i++) { continue; a++ } return a }', 0)
  210. def test_for_loop_break(self):
  211. self._test('function f() { a=0; for (i=0; i-10; i++) { break; a++ } return a }', 0)
  212. def test_for_loop_try(self):
  213. self._test('''
  214. function f() {
  215. for (i=0; i-10; i++) { try { if (i == 5) throw i} catch {return 10} finally {break} };
  216. return 42 }
  217. ''', 42)
  218. def test_literal_list(self):
  219. self._test('function f() { return [1, 2, "asdf", [5, 6, 7]][3] }', [5, 6, 7])
  220. def test_comma(self):
  221. self._test('function f() { a=5; a -= 1, a+=3; return a }', 7)
  222. self._test('function f() { a=5; return (a -= 1, a+=3, a); }', 7)
  223. self._test('function f() { return (l=[0,1,2,3], function(a, b){return a+b})((l[1], l[2]), l[3]) }', 5)
  224. def test_void(self):
  225. self._test('function f() { return void 42; }', None)
  226. def test_return_function(self):
  227. jsi = JSInterpreter('''
  228. function f() { return [1, function(){return 1}][1] }
  229. ''')
  230. self.assertEqual(jsi.call_function('f')([]), 1)
  231. def test_null(self):
  232. self._test('function f() { return null; }', None)
  233. self._test('function f() { return [null > 0, null < 0, null == 0, null === 0]; }',
  234. [False, False, False, False])
  235. self._test('function f() { return [null >= 0, null <= 0]; }', [True, True])
  236. def test_undefined(self):
  237. self._test('function f() { return undefined === undefined; }', True)
  238. self._test('function f() { return undefined; }', JS_Undefined)
  239. self._test('function f() {return undefined ?? 42; }', 42)
  240. self._test('function f() { let v; return v; }', JS_Undefined)
  241. self._test('function f() { let v; return v**0; }', 1)
  242. self._test('function f() { let v; return [v>42, v<=42, v&&42, 42&&v]; }',
  243. [False, False, JS_Undefined, JS_Undefined])
  244. self._test('''
  245. function f() { return [
  246. undefined === undefined,
  247. undefined == undefined,
  248. undefined == null,
  249. undefined < undefined,
  250. undefined > undefined,
  251. undefined === 0,
  252. undefined == 0,
  253. undefined < 0,
  254. undefined > 0,
  255. undefined >= 0,
  256. undefined <= 0,
  257. undefined > null,
  258. undefined < null,
  259. undefined === null
  260. ]; }
  261. ''', list(map(bool, (1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0))))
  262. jsi = JSInterpreter('''
  263. function f() { let v; return [42+v, v+42, v**42, 42**v, 0**v]; }
  264. ''')
  265. for y in jsi.call_function('f'):
  266. self.assertTrue(math.isnan(y))
  267. def test_object(self):
  268. self._test('function f() { return {}; }', {})
  269. self._test('function f() { let a = {m1: 42, m2: 0 }; return [a["m1"], a.m2]; }', [42, 0])
  270. self._test('function f() { let a; return a?.qq; }', JS_Undefined)
  271. self._test('function f() { let a = {m1: 42, m2: 0 }; return a?.qq; }', JS_Undefined)
  272. def test_regex(self):
  273. self._test('function f() { let a=/,,[/,913,/](,)}/; }', None)
  274. self._test('function f() { let a=/,,[/,913,/](,)}/; return a; }', R'/,,[/,913,/](,)}/0')
  275. R''' # We are not compiling regex
  276. jsi = JSInterpreter('function f() { let a=/,,[/,913,/](,)}/; return a; }')
  277. self.assertIsInstance(jsi.call_function('f'), re.Pattern)
  278. jsi = JSInterpreter('function f() { let a=/,,[/,913,/](,)}/i; return a; }')
  279. self.assertEqual(jsi.call_function('f').flags & re.I, re.I)
  280. jsi = JSInterpreter(R'function f() { let a=/,][}",],()}(\[)/; return a; }')
  281. self.assertEqual(jsi.call_function('f').pattern, r',][}",],()}(\[)')
  282. jsi = JSInterpreter(R'function f() { let a=[/[)\\]/]; return a[0]; }')
  283. self.assertEqual(jsi.call_function('f').pattern, r'[)\\]')
  284. '''
  285. @unittest.skip('Not implemented')
  286. def test_replace(self):
  287. self._test('function f() { let a="data-name".replace("data-", ""); return a }',
  288. 'name')
  289. self._test('function f() { let a="data-name".replace(new RegExp("^.+-"), ""); return a; }',
  290. 'name')
  291. self._test('function f() { let a="data-name".replace(/^.+-/, ""); return a; }',
  292. 'name')
  293. self._test('function f() { let a="data-name".replace(/a/g, "o"); return a; }',
  294. 'doto-nome')
  295. self._test('function f() { let a="data-name".replaceAll("a", "o"); return a; }',
  296. 'doto-nome')
  297. def test_char_code_at(self):
  298. jsi = JSInterpreter('function f(i){return "test".charCodeAt(i)}')
  299. self._test(jsi, 116, args=[0])
  300. self._test(jsi, 101, args=[1])
  301. self._test(jsi, 115, args=[2])
  302. self._test(jsi, 116, args=[3])
  303. self._test(jsi, None, args=[4])
  304. self._test(jsi, 116, args=['not_a_number'])
  305. def test_bitwise_operators_overflow(self):
  306. self._test('function f(){return -524999584 << 5}', 379882496)
  307. self._test('function f(){return 1236566549 << 5}', 915423904)
  308. def test_bitwise_operators_typecast(self):
  309. self._test('function f(){return null << 5}', 0)
  310. self._test('function f(){return undefined >> 5}', 0)
  311. self._test('function f(){return 42 << NaN}', 42)
  312. def test_negative(self):
  313. self._test('function f(){return 2 * -2.0 ;}', -4)
  314. self._test('function f(){return 2 - - -2 ;}', 0)
  315. self._test('function f(){return 2 - - - -2 ;}', 4)
  316. self._test('function f(){return 2 - + + - -2;}', 0)
  317. self._test('function f(){return 2 + - + - -2;}', 0)
  318. @unittest.skip('Not implemented')
  319. def test_packed(self):
  320. jsi = JSInterpreter('''function f(p,a,c,k,e,d){while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p}''')
  321. self.assertEqual(jsi.call_function('f', '''h 7=g("1j");7.7h({7g:[{33:"w://7f-7e-7d-7c.v.7b/7a/79/78/77/76.74?t=73&s=2s&e=72&f=2t&71=70.0.0.1&6z=6y&6x=6w"}],6v:"w://32.v.u/6u.31",16:"r%",15:"r%",6t:"6s",6r:"",6q:"l",6p:"l",6o:"6n",6m:\'6l\',6k:"6j",9:[{33:"/2u?b=6i&n=50&6h=w://32.v.u/6g.31",6f:"6e"}],1y:{6d:1,6c:\'#6b\',6a:\'#69\',68:"67",66:30,65:r,},"64":{63:"%62 2m%m%61%5z%5y%5x.u%5w%5v%5u.2y%22 2k%m%1o%22 5t%m%1o%22 5s%m%1o%22 2j%m%5r%22 16%m%5q%22 15%m%5p%22 5o%2z%5n%5m%2z",5l:"w://v.u/d/1k/5k.2y",5j:[]},\'5i\':{"5h":"5g"},5f:"5e",5d:"w://v.u",5c:{},5b:l,1x:[0.25,0.50,0.75,1,1.25,1.5,2]});h 1m,1n,5a;h 59=0,58=0;h 7=g("1j");h 2x=0,57=0,56=0;$.55({54:{\'53-52\':\'2i-51\'}});7.j(\'4z\',6(x){c(5>0&&x.1l>=5&&1n!=1){1n=1;$(\'q.4y\').4x(\'4w\')}});7.j(\'13\',6(x){2x=x.1l});7.j(\'2g\',6(x){2w(x)});7.j(\'4v\',6(){$(\'q.2v\').4u()});6 2w(x){$(\'q.2v\').4t();c(1m)19;1m=1;17=0;c(4s.4r===l){17=1}$.4q(\'/2u?b=4p&2l=1k&4o=2t-4n-4m-2s-4l&4k=&4j=&4i=&17=\'+17,6(2r){$(\'#4h\').4g(2r)});$(\'.3-8-4f-4e:4d("4c")\').2h(6(e){2q();g().4b(0);g().4a(l)});6 2q(){h $14=$("<q />").2p({1l:"49",16:"r%",15:"r%",48:0,2n:0,2o:47,46:"45(10%, 10%, 10%, 0.4)","44-43":"42"});$("<41 />").2p({16:"60%",15:"60%",2o:40,"3z-2n":"3y"}).3x({\'2m\':\'/?b=3w&2l=1k\',\'2k\':\'0\',\'2j\':\'2i\'}).2f($14);$14.2h(6(){$(3v).3u();g().2g()});$14.2f($(\'#1j\'))}g().13(0);}6 3t(){h 9=7.1b(2e);2d.2c(9);c(9.n>1){1r(i=0;i<9.n;i++){c(9[i].1a==2e){2d.2c(\'!!=\'+i);7.1p(i)}}}}7.j(\'3s\',6(){g().1h("/2a/3r.29","3q 10 28",6(){g().13(g().27()+10)},"2b");$("q[26=2b]").23().21(\'.3-20-1z\');g().1h("/2a/3p.29","3o 10 28",6(){h 12=g().27()-10;c(12<0)12=0;g().13(12)},"24");$("q[26=24]").23().21(\'.3-20-1z\');});6 1i(){}7.j(\'3n\',6(){1i()});7.j(\'3m\',6(){1i()});7.j("k",6(y){h 9=7.1b();c(9.n<2)19;$(\'.3-8-3l-3k\').3j(6(){$(\'#3-8-a-k\').1e(\'3-8-a-z\');$(\'.3-a-k\').p(\'o-1f\',\'11\')});7.1h("/3i/3h.3g","3f 3e",6(){$(\'.3-1w\').3d(\'3-8-1v\');$(\'.3-8-1y, .3-8-1x\').p(\'o-1g\',\'11\');c($(\'.3-1w\').3c(\'3-8-1v\')){$(\'.3-a-k\').p(\'o-1g\',\'l\');$(\'.3-a-k\').p(\'o-1f\',\'l\');$(\'.3-8-a\').1e(\'3-8-a-z\');$(\'.3-8-a:1u\').3b(\'3-8-a-z\')}3a{$(\'.3-a-k\').p(\'o-1g\',\'11\');$(\'.3-a-k\').p(\'o-1f\',\'11\');$(\'.3-8-a:1u\').1e(\'3-8-a-z\')}},"39");7.j("38",6(y){1d.37(\'1c\',y.9[y.36].1a)});c(1d.1t(\'1c\')){35("1s(1d.1t(\'1c\'));",34)}});h 18;6 1s(1q){h 9=7.1b();c(9.n>1){1r(i=0;i<9.n;i++){c(9[i].1a==1q){c(i==18){19}18=i;7.1p(i)}}}}',36,270,'|||jw|||function|player|settings|tracks|submenu||if||||jwplayer|var||on|audioTracks|true|3D|length|aria|attr|div|100|||sx|filemoon|https||event|active||false|tt|seek|dd|height|width|adb|current_audio|return|name|getAudioTracks|default_audio|localStorage|removeClass|expanded|checked|addButton|callMeMaybe|vplayer|0fxcyc2ajhp1|position|vvplay|vvad|220|setCurrentAudioTrack|audio_name|for|audio_set|getItem|last|open|controls|playbackRates|captions|rewind|icon|insertAfter||detach|ff00||button|getPosition|sec|png|player8|ff11|log|console|track_name|appendTo|play|click|no|scrolling|frameborder|file_code|src|top|zIndex|css|showCCform|data|1662367683|383371|dl|video_ad|doPlay|prevt|mp4|3E||jpg|thumbs|file|300|setTimeout|currentTrack|setItem|audioTrackChanged|dualSound|else|addClass|hasClass|toggleClass|Track|Audio|svg|dualy|images|mousedown|buttons|topbar|playAttemptFailed|beforePlay|Rewind|fr|Forward|ff|ready|set_audio_track|remove|this|upload_srt|prop|50px|margin|1000001|iframe|center|align|text|rgba|background|1000000|left|absolute|pause|setCurrentCaptions|Upload|contains|item|content|html|fviews|referer|prem|embed|3e57249ef633e0d03bf76ceb8d8a4b65|216|83|hash|view|get|TokenZir|window|hide|show|complete|slow|fadeIn|video_ad_fadein|time||cache|Cache|Content|headers|ajaxSetup|v2done|tott|vastdone2|vastdone1|vvbefore|playbackRateControls|cast|aboutlink|FileMoon|abouttext|UHD|1870|qualityLabels|sites|GNOME_POWER|link|2Fiframe|3C|allowfullscreen|22360|22640|22no|marginheight|marginwidth|2FGNOME_POWER|2F0fxcyc2ajhp1|2Fe|2Ffilemoon|2F|3A||22https|3Ciframe|code|sharing|fontOpacity|backgroundOpacity|Tahoma|fontFamily|303030|backgroundColor|FFFFFF|color|userFontScale|thumbnails|kind|0fxcyc2ajhp10000|url|get_slides|start|startparam|none|preload|html5|primary|hlshtml|androidhls|duration|uniform|stretching|0fxcyc2ajhp1_xt|image|2048|sp|6871|asn|127|srv|43200|_g3XlBcu2lmD9oDexD2NLWSmah2Nu3XcDrl93m9PwXY|m3u8||master|0fxcyc2ajhp1_x|00076|01|hls2|to|s01|delivery|storage|moon|sources|setup'''.split('|')))
  322. def test_join(self):
  323. test_input = list('test')
  324. tests = [
  325. 'function f(a, b){return a.join(b)}',
  326. 'function f(a, b){return Array.prototype.join.call(a, b)}',
  327. 'function f(a, b){return Array.prototype.join.apply(a, [b])}',
  328. ]
  329. for test in tests:
  330. jsi = JSInterpreter(test)
  331. self._test(jsi, 'test', args=[test_input, ''])
  332. self._test(jsi, 't-e-s-t', args=[test_input, '-'])
  333. self._test(jsi, '', args=[[], '-'])
  334. def test_split(self):
  335. test_result = list('test')
  336. tests = [
  337. 'function f(a, b){return a.split(b)}',
  338. 'function f(a, b){return String.prototype.split.call(a, b)}',
  339. 'function f(a, b){return String.prototype.split.apply(a, [b])}',
  340. ]
  341. for test in tests:
  342. jsi = JSInterpreter(test)
  343. self._test(jsi, test_result, args=['test', ''])
  344. self._test(jsi, test_result, args=['t-e-s-t', '-'])
  345. self._test(jsi, [''], args=['', '-'])
  346. self._test(jsi, [], args=['', ''])
  347. def test_slice(self):
  348. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice()}', [0, 1, 2, 3, 4, 5, 6, 7, 8])
  349. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(0)}', [0, 1, 2, 3, 4, 5, 6, 7, 8])
  350. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(5)}', [5, 6, 7, 8])
  351. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(99)}', [])
  352. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-2)}', [7, 8])
  353. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-99)}', [0, 1, 2, 3, 4, 5, 6, 7, 8])
  354. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(0, 0)}', [])
  355. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(1, 0)}', [])
  356. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(0, 1)}', [0])
  357. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(3, 6)}', [3, 4, 5])
  358. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(1, -1)}', [1, 2, 3, 4, 5, 6, 7])
  359. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-1, 1)}', [])
  360. self._test('function f(){return [0, 1, 2, 3, 4, 5, 6, 7, 8].slice(-3, -1)}', [6, 7])
  361. self._test('function f(){return "012345678".slice()}', '012345678')
  362. self._test('function f(){return "012345678".slice(0)}', '012345678')
  363. self._test('function f(){return "012345678".slice(5)}', '5678')
  364. self._test('function f(){return "012345678".slice(99)}', '')
  365. self._test('function f(){return "012345678".slice(-2)}', '78')
  366. self._test('function f(){return "012345678".slice(-99)}', '012345678')
  367. self._test('function f(){return "012345678".slice(0, 0)}', '')
  368. self._test('function f(){return "012345678".slice(1, 0)}', '')
  369. self._test('function f(){return "012345678".slice(0, 1)}', '0')
  370. self._test('function f(){return "012345678".slice(3, 6)}', '345')
  371. self._test('function f(){return "012345678".slice(1, -1)}', '1234567')
  372. self._test('function f(){return "012345678".slice(-1, 1)}', '')
  373. self._test('function f(){return "012345678".slice(-3, -1)}', '67')
  374. def test_js_number_to_string(self):
  375. for test, radix, expected in [
  376. (0, None, '0'),
  377. (-0, None, '0'),
  378. (0.0, None, '0'),
  379. (-0.0, None, '0'),
  380. (math.nan, None, 'NaN'),
  381. (-math.nan, None, 'NaN'),
  382. (math.inf, None, 'Infinity'),
  383. (-math.inf, None, '-Infinity'),
  384. (10 ** 21.5, 8, '526665530627250154000000'),
  385. (6, 2, '110'),
  386. (254, 16, 'fe'),
  387. (-10, 2, '-1010'),
  388. (-0xff, 2, '-11111111'),
  389. (0.1 + 0.2, 16, '0.4cccccccccccd'),
  390. (1234.1234, 10, '1234.1234'),
  391. # (1000000000000000128, 10, '1000000000000000100')
  392. ]:
  393. assert js_number_to_string(test, radix) == expected
  394. if __name__ == '__main__':
  395. unittest.main()