Skip to content

Commit 48c2bc9

Browse files
author
vhristov5555
committed
Add test for console log with arabic symbols in debug. NativeScript/android#1302
1 parent 92897a0 commit 48c2bc9

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

assets/runtime/debug/files/console_log/main-view-model.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ function createViewModel() {
1717
viewModel.counter--;
1818
viewModel.set("message", getMessage(viewModel.counter));
1919
console.log("Test Debug!");
20+
console.log("العربییە");
2021
};
2122

2223
return viewModel;

core/utils/chrome/chrome_dev_tools.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ def wait_element_by_text(self, text, timeout=30):
9393
self.chrome.driver.implicitly_wait(1)
9494
result = Wait.until(lambda: self.find_element_by_text(text) is not None, timeout=timeout, period=1)
9595
self.chrome.driver.implicitly_wait(self.chrome.implicitly_wait)
96-
assert result, 'Failed to find element by "{0}" text.'.format(text)
97-
Log.info('Element with text "{0}" found in CDT.'.format(text))
96+
assert result, 'Failed to find element by "{0}" text.'.format(text.encode('utf-8'))
97+
Log.info('Element with text "{0}" found in CDT.'.format(text.encode('utf-8')))
9898
return self.find_element_by_text(text)
9999

100100
def open_tab(self, tab, verify=True):

tests/cli/debug/test_debug_js.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
import os
23
import unittest
34
from time import sleep
@@ -146,10 +147,16 @@ def __console_log(self, platform, device):
146147
# Ensure logs are available in tns logs
147148
tns_logs = File.read(result.log_file)
148149
assert "Test Debug!" in tns_logs, 'Console log messages not available in CLI output.' + os.linesep + tns_logs
150+
message = 'Console log messages(Arabic and Kurdish characters) not available in CLI output.'
151+
# add test for issue https://github.com/NativeScript/android-runtime/issues/1302
152+
assert 'العربییە' in tns_logs, message + os.linesep + tns_logs
149153

150154
# Verify console logs are available in Chrome dev tools
151155
log = self.dev_tools.wait_element_by_text(text='Test Debug!')
152156
assert log is not None, 'Console logs not displayed in Chrome Dev Tools.'
157+
log = self.dev_tools.wait_element_by_text(text='العربییە'.decode('utf-8'))
158+
# add test for issue https://github.com/NativeScript/android-runtime/issues/1302
159+
assert log is not None, 'Console logs(Arabic and Kurdish characters) not displayed in Chrome Dev Tools.'
153160

154161
def __console_eval(self, platform, device):
155162
# Run `tns debug` wait until debug url is in the console and app is loaded

0 commit comments

Comments
 (0)