@@ -64,7 +64,7 @@ def test_300_verbose_log_android(self):
64
64
log = Tns .run_android (attributes = {'--path' : self .app_name , '--device' : EMULATOR_ID }, wait = False ,
65
65
assert_success = False )
66
66
strings = ['Project successfully built' , 'Successfully installed on device with identifier' , EMULATOR_ID ]
67
- Tns .wait_for_log (log_file = log , string_list = strings , timeout = 180 , check_interval = 10 , clean_log = False )
67
+ Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
68
68
sleep (10 )
69
69
70
70
log_string = File .read (log )
@@ -97,7 +97,7 @@ def test_301_native_package_starting_with_in_are_working(self):
97
97
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
98
98
try :
99
99
Tns .wait_for_log (log_file = log , string_list = ["###TEST PASSED###" ],
100
- timeout = 120 , check_interval = 10 , clean_log = False )
100
+ timeout = 240 , check_interval = 10 , clean_log = False )
101
101
except Exception as e :
102
102
print str (e )
103
103
assert 1 == 2 , 'Native packages starting with in could not be accessed'
@@ -124,7 +124,7 @@ def test_302_check_if_class_implements_java_interface_javascript(self):
124
124
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
125
125
try :
126
126
Tns .wait_for_log (log_file = log , string_list = ["### TEST PASSED ###" ],
127
- timeout = 120 , check_interval = 10 , clean_log = False )
127
+ timeout = 240 , check_interval = 10 , clean_log = False )
128
128
except Exception as e :
129
129
print str (e )
130
130
assert 1 == 2 , 'Javascript : Check(instanceof) for java class implements java interface does not work' \
@@ -152,7 +152,7 @@ def test_303_check_if_class_implements_java_interface_java(self):
152
152
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
153
153
try :
154
154
Tns .wait_for_log (log_file = log , string_list = ["### TEST PASSED ###" ],
155
- timeout = 120 , check_interval = 10 , clean_log = False )
155
+ timeout = 240 , check_interval = 10 , clean_log = False )
156
156
except Exception as e :
157
157
print str (e )
158
158
assert 1 == 2 , 'JAVA : Check(instanceof) for java class implements java interface does not work' \
@@ -174,7 +174,7 @@ def test_304_support_HeapByteBuffer_to_ArrayBuffer(self):
174
174
Tns .wait_for_log (log_file = log , string_list = ['Successfully synced application' ], timeout = 240 , check_interval = 10 ,
175
175
clean_log = False )
176
176
try :
177
- Tns .wait_for_log (log_file = log , string_list = ["###TEST PASSED###" ], timeout = 60 , check_interval = 10 ,
177
+ Tns .wait_for_log (log_file = log , string_list = ["###TEST PASSED###" ], timeout = 240 , check_interval = 10 ,
178
178
clean_log = False )
179
179
except Exception as e :
180
180
print str (e )
@@ -207,7 +207,7 @@ def test_305_native_package_with_compile_app_gradle(self):
207
207
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
208
208
try :
209
209
Tns .wait_for_log (log_file = log , string_list = ["###TEST COMPILE PASSED###" ],
210
- timeout = 120 , check_interval = 10 , clean_log = False )
210
+ timeout = 240 , check_interval = 10 , clean_log = False )
211
211
except Exception as e :
212
212
print str (e )
213
213
assert 1 == 2 , 'Native packages could not be used with compile in app.gradle'
@@ -239,7 +239,7 @@ def test_306_native_package_with_implementation_app_gradle(self):
239
239
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
240
240
try :
241
241
Tns .wait_for_log (log_file = log , string_list = ["###TEST IMPLEMENTATION PASSED###" ],
242
- timeout = 120 , check_interval = 10 , clean_log = False )
242
+ timeout = 240 , check_interval = 10 , clean_log = False )
243
243
except Exception as e :
244
244
print str (e )
245
245
assert 1 == 2 , 'Native packages could not be used with implementation in app.gradle'
@@ -271,7 +271,7 @@ def test_307_native_package_with_api_app_gradle(self):
271
271
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
272
272
try :
273
273
Tns .wait_for_log (log_file = log , string_list = ["###TEST API PASSED###" ],
274
- timeout = 120 , check_interval = 10 , clean_log = False )
274
+ timeout = 240 , check_interval = 10 , clean_log = False )
275
275
except Exception as e :
276
276
print str (e )
277
277
assert 1 == 2 , 'Native packages could not be used with api in app.gradle'
@@ -317,7 +317,7 @@ def test_308_native_package_in_plugin_include_gradle_with_compile(self):
317
317
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
318
318
try :
319
319
Tns .wait_for_log (log_file = log , string_list = ["###TEST COMPILE PLUGIN PASSED###" ],
320
- timeout = 120 , check_interval = 10 , clean_log = False )
320
+ timeout = 240 , check_interval = 10 , clean_log = False )
321
321
except Exception as e :
322
322
print str (e )
323
323
assert 1 == 2 , 'Native packages could not be used in plugin with compile in include gradle'
@@ -369,7 +369,7 @@ def test_309_native_package_in_plugin_include_gradle_with_implementation(self):
369
369
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
370
370
try :
371
371
Tns .wait_for_log (log_file = log , string_list = ["###TEST IMPLEMENTATION PLUGIN PASSED###" ],
372
- timeout = 120 , check_interval = 10 , clean_log = False )
372
+ timeout = 240 , check_interval = 10 , clean_log = False )
373
373
except Exception as e :
374
374
print str (e )
375
375
assert 1 == 2 , 'Native packages could not be used in plugin with implementation in include gradle'
@@ -420,7 +420,7 @@ def test_310_native_package_in_plugin_include_gradle_with_api(self):
420
420
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
421
421
try :
422
422
Tns .wait_for_log (log_file = log , string_list = ["###TEST API PLUGIN PASSED###" ],
423
- timeout = 120 , check_interval = 10 , clean_log = False )
423
+ timeout = 240 , check_interval = 10 , clean_log = False )
424
424
except Exception as e :
425
425
print str (e )
426
426
assert 1 == 2 , 'Native packages could not be used in plugin with api in include gradle'
@@ -464,7 +464,7 @@ def test_311_native_package_in_arr_plugin(self):
464
464
Tns .wait_for_log (log_file = log , string_list = strings , timeout = 240 , check_interval = 10 , clean_log = False )
465
465
try :
466
466
Tns .wait_for_log (log_file = log , string_list = ["###TEST ARR PLUGIN PASSED###" ],
467
- timeout = 120 , check_interval = 10 , clean_log = False )
467
+ timeout = 240 , check_interval = 10 , clean_log = False )
468
468
except Exception as e :
469
469
print str (e )
470
470
assert 1 == 2 , 'Native packages could not be used in arr plugin'
0 commit comments