-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrunTest.py
96 lines (79 loc) · 2.99 KB
/
runTest.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
#!/user/local/bin/python
# -*- coding:utf-8 -*-
import os
import sys
import zipfile
from flask import Flask
from bs4 import BeautifulSoup
def getTheme_nopackage():
return os.listdir(os.path.join(os.getcwd() , 'theme_nopackage'))
def cpTemp( item ):
print 'copy %s nopackage --> package dir :clean:%s' % (item , item )
fileName = os.path.join(os.getcwd() , 'theme_package',item )
print 'clean path:%s' % fileName
if os.path.exists(fileName):
print 'path found , clean countinue'
os.remove(fileName)
else:
print 'path not found ,do not clean '
if os.sep == '/':
cp = 'cp'
print "%s -R ./theme_nopackage/'%s' ./theme_package/" % ( cp,item )
os.system("%s -R ./theme_nopackage/'%s' ./theme_package/" % ( cp,item ))
else :
print "xcopy .\\theme_nopackage\\'%s' .\\theme_package\\'%s' /T /I" % ( item , item )
print "xcopy .\\theme_nopackage\\'%s' .\\theme_package\\'%s'" % ( item , item )
os.system("xcopy .\\theme_nopackage\\'%s' .\\theme_package\\'%s' /T /I" % ( item , item ))
os.system("xcopy .\\theme_nopackage\\'%s' .\\theme_package\\'%s'" % ( item , item ))
def parse_main(projectName , typeName):
print '[parse_main]:projectName->%s, type->%s' % (projectName, typeName )
themeList = getTheme_nopackage()
for item in themeList :
if(item == projectName):
print "[parse_main] found project :%s" % item
cpTemp(projectName)
if typeName == 'lockscreen':
return parse_lockscreen(item)
else:
return "[parse_main]option is not allow,option:%s" % typeName
return "null"
def parse_lockscreen(projectName):
print "[parse_lockscreen] projectName:%s" % projectName
lockFilePath = os.path.join(os.getcwd() ,"theme_package%s%s%sunlock" %(os.sep,projectName,os.sep))
themeXmlPath = os.path.join(lockFilePath , "theme.xml")
print "[parse_lockscreen] lockFilePath:%s,themeXmlPath:%s"%(lockFilePath,themeXmlPath)
lockscreenFilePath = '';
if not os.path.exists(themeXmlPath):
return "[parse_lockscreen]:theme.xml not found ,path: %s" % themeXmlPath
themeXmlFile = open(themeXmlPath);
themeXmlContent = ''
try:
themeXmlContent = themeXmlFile.read()
finally:
themeXmlFile.close()
print "[parse_lockscreen]:xmlContent:%s\n" % themeXmlContent
soup = BeautifulSoup(themeXmlContent)
print soup.prettify()
#TODO: xml校验, xml解析 获得dynamicpath
return themeXmlContent
# start
# themeList = getTheme_nopackage()
# for item in themeList:
# print('success scan :%s' % item );
# if item == '.DS_Store':
# continue
# cpTemp( item )
app = Flask(__name__)
@app.route("/")
def hello():
return "<h1>Hello World</h1>"
@app.route("/lockscreen/<projectName>")
def testLocalScreen(projectName):
print "projectName : %s" % projectName
returnContent = parse_main(projectName, "lockscreen")
if returnContent == 'null':
return "<h1>projectName--><span style='color:red'>%s</span> </br>not found</h1>" % projectName
else:
return returnContent
if __name__ == "__main__":
app.run()