-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtns.py
257 lines (197 loc) · 7.75 KB
/
tns.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
"""
A wrapper of the tns commands.
"""
import os
import time
from core.osutils.command import run
from core.osutils.folder import Folder
from core.settings.settings import TNS_PATH, SUT_ROOT_FOLDER, TEST_RUN_HOME
class Tns(object):
@staticmethod
def version():
"""
Return {N} CLI version.
"""
command = TNS_PATH + " --version"
output = run(command)
return output
@staticmethod
def create_app(app_name, path=None, app_id=None, copy_from=None, template=None, log_trace=False,
update_modules=True, assert_success=True):
"""
Create {N} project.
"""
command = TNS_PATH + " create {0}".format(app_name)
if path is not None:
command += " --path " + path
if app_id is not None:
command += " --appid " + app_id
if template is None:
# By default --copy-from template-hello-world
if copy_from is not None:
command += " --copy-from " + copy_from
else:
command += " --copy-from " + SUT_ROOT_FOLDER + os.path.sep + "template-hello-world"
if template is not None:
command += " --template " + template
if log_trace:
command += " --log trace"
output = run(command)
if assert_success:
assert "Project {0} was successfully created".format(app_name.replace("\"", "")) in output
if update_modules:
if path is not None:
app_name = path + app_name
Folder.navigate_to(app_name)
npm_out1 = run("npm uninstall tns-core-modules")
modules_path = SUT_ROOT_FOLDER + os.path.sep + "tns-core-modules.tgz"
npm_out2 = run("npm install " + modules_path + " -save")
Folder.navigate_to(os.path.join("node_modules", "tns-core-modules"))
npm_out3 = run("npm uninstall tns-core-modules-widgets")
widgets_path = SUT_ROOT_FOLDER + os.path.sep + "tns-core-modules-widgets.tgz"
npm_out4 = run("npm install " + widgets_path + " -save")
Folder.navigate_to(TEST_RUN_HOME, relative_from__current_folder=False)
output = output + npm_out1 + npm_out2 + npm_out3 + npm_out4
return output
@staticmethod
def platform_add(platform=None, framework_path=None, path=None, symlink=False, log_trace=False):
"""
Add target platform.
"""
command = TNS_PATH + " platform add"
if platform is not None:
command += " {0}".format(platform)
if framework_path is not None:
command += " --framework-path {0}".format(framework_path)
if path is not None:
command += " --path {0}".format(path)
if symlink is True:
command += " --symlink"
if log_trace:
command += " --log trace"
output = run(command)
assert "Copying template files..." in output
assert "Project successfully created." in output
return output
@staticmethod
def prepare(platform=None, path=None, assert_success=True, log_trace=False):
"""
Prepare target platform.
"""
command = TNS_PATH + " prepare"
if platform is not None:
command += " {0}".format(platform)
if path is not None:
command += " --path {0}".format(path)
if log_trace:
command += " --log trace"
output = run(command)
if assert_success:
assert "Project successfully prepared" in output
return output
@staticmethod
def plugin_add(plugin=None, path=None, assert_success=True):
"""
Install {N} plugin.
"""
command = TNS_PATH + " plugin add"
if plugin is not None:
command += " {0}".format(plugin)
if path is not None:
command += " --path {0}".format(path)
# command += " --log trace"
output = run(command)
if assert_success:
assert "Successfully installed plugin {0}".format(plugin) in output
return output
@staticmethod
def build(platform=None, mode=None, for_device=False, path=None):
"""
Build {N} project.
"""
command = TNS_PATH + " build"
if platform is not None:
command += " {0}".format(platform)
if mode is not None:
command += " --{0}".format(mode)
if for_device:
command += " --for-device"
if path is not None:
command += " --path {0}".format(path)
# command += " --log trace"
output = run(command)
assert "Project successfully prepared" in output
if platform is "android":
assert "BUILD SUCCESSFUL" in output
elif platform is "ios":
assert "BUILD SUCCEEDED" in output
assert "Project successfully built" in output
assert "ERROR" not in output
return output
@staticmethod
def run(platform=None, emulator=False, device=None, path=None, assert_success=True):
"""
Run {N} project.
"""
command = TNS_PATH + " run"
if platform is not None:
command += " {0}".format(platform)
if emulator:
command += " --emulator"
if device is not None:
command += " --device {0}".format(device)
if path is not None:
command += " --path {0}".format(path)
command += " --justlaunch --log trace"
output = run(command)
if assert_success:
assert "Project successfully prepared" in output
assert "Project successfully built" in output
if platform is "android":
assert "Successfully deployed on device with identifier" in output
elif platform is "ios":
if emulator:
assert "Starting iOS Simulator" in output
else:
assert "Successfully deployed on device" in output
assert "Successfully run application org.nativescript." in output
return output
@staticmethod
def livesync(platform=None, emulator=False, device=None, path=None, assert_success=True):
"""
The livesync command.
Parameters:
- android: --device, -- watch
- iOS: --emulator, -- device, --watch
"""
command = TNS_PATH + " livesync"
if platform is not None:
command += " {0}".format(platform)
if emulator:
command += " --emulator"
if device is not None:
command += " --device {0}".format(device)
if path is not None:
command += " --path {0}".format(path)
command += " --justlaunch --log trace"
output = run(command)
if assert_success:
assert "Project successfully prepared" in output
if platform is "android":
# assert "Start syncing application" in output
# TODO: This is not longer avalable, uncomment if available again
assert "Transferring project files..." in output
assert "Successfully transferred all project files." in output
assert "Applying changes..." in output
assert "Successfully synced application" in output
time.sleep(10)
elif platform is "ios":
assert "Project successfully prepared" in output
return output
@staticmethod
def create_app_platform_add(app_name, platform=None, framework_path=None, symlink=False):
"""
Create {N} project and add target platform.
"""
Tns.create_app(app_name=app_name)
Tns.platform_add(platform, framework_path, app_name, symlink)