FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-xcode/test/dataModelDocument.js at master · tkporter/node-xcode · GitHub
tkporter
/
node-xcode
Public
forked from
alunny/node-xcode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node-xcode
/
test
/
dataModelDocument.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
162 lines (141 loc) · 6.47 KB
Breadcrumbs
node-xcode
/
test
/
dataModelDocument.js
Copy path
File metadata and controls
162 lines (141 loc) · 6.47 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
var
jsonProject
=
require
(
'./fixtures/full-project'
)
fullProjectStr
=
JSON
.
stringify
(
jsonProject
)
,
path
=
require
(
'path'
)
,
pbx
=
require
(
'../lib/pbxProject'
)
,
pbxFile
=
require
(
'../lib/pbxFile'
)
,
proj
=
new
pbx
(
'.'
)
,
singleDataModelFilePath
=
__dirname
+
'/fixtures/single-data-model.xcdatamodeld'
,
multipleDataModelFilePath
=
__dirname
+
'/fixtures/multiple-data-model.xcdatamodeld'
;
function
cleanHash
(
)
{
return
JSON
.
parse
(
fullProjectStr
)
;
}
exports
.
setUp
=
function
(
callback
)
{
proj
.
hash
=
cleanHash
(
)
;
callback
(
)
;
}
exports
.
dataModelDocument
=
{
'should return a pbxFile'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
;
test
.
equal
(
newFile
.
constructor
,
pbxFile
)
;
test
.
done
(
)
}
,
'should set a uuid on the pbxFile'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
;
test
.
ok
(
newFile
.
uuid
)
;
test
.
done
(
)
}
,
'should set a fileRef on the pbxFile'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
;
test
.
ok
(
newFile
.
fileRef
)
;
test
.
done
(
)
}
,
'should set an optional target on the pbxFile'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
,
undefined
,
{
target
:
target
}
)
,
target
=
proj
.
findTargetKey
(
'TestApp'
)
;
test
.
equal
(
newFile
.
target
,
target
)
;
test
.
done
(
)
}
,
'should populate the PBXBuildFile section with 2 fields'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
,
buildFileSection
=
proj
.
pbxBuildFileSection
(
)
,
bfsLength
=
Object
.
keys
(
buildFileSection
)
.
length
;
test
.
equal
(
59
+
1
,
bfsLength
)
;
test
.
ok
(
buildFileSection
[
newFile
.
uuid
]
)
;
test
.
ok
(
buildFileSection
[
newFile
.
uuid
+
'_comment'
]
)
;
test
.
done
(
)
;
}
,
'should populate the PBXFileReference section with 2 fields for single model document'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
,
fileRefSection
=
proj
.
pbxFileReferenceSection
(
)
,
frsLength
=
Object
.
keys
(
fileRefSection
)
.
length
;
test
.
equal
(
66
+
2
,
frsLength
)
;
test
.
ok
(
fileRefSection
[
newFile
.
models
[
0
]
.
fileRef
]
)
;
test
.
ok
(
fileRefSection
[
newFile
.
models
[
0
]
.
fileRef
+
'_comment'
]
)
;
test
.
done
(
)
;
}
,
'should populate the PBXFileReference section with 2 fields for each model of a model document'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
multipleDataModelFilePath
)
,
fileRefSection
=
proj
.
pbxFileReferenceSection
(
)
,
frsLength
=
Object
.
keys
(
fileRefSection
)
.
length
;
test
.
equal
(
66
+
2
*
2
,
frsLength
)
;
test
.
ok
(
fileRefSection
[
newFile
.
models
[
0
]
.
fileRef
]
)
;
test
.
ok
(
fileRefSection
[
newFile
.
models
[
0
]
.
fileRef
+
'_comment'
]
)
;
test
.
ok
(
fileRefSection
[
newFile
.
models
[
1
]
.
fileRef
]
)
;
test
.
ok
(
fileRefSection
[
newFile
.
models
[
1
]
.
fileRef
+
'_comment'
]
)
;
test
.
done
(
)
;
}
,
'should add to resources group by default'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
;
groupChildren
=
proj
.
pbxGroupByName
(
'Resources'
)
.
children
,
found
=
false
;
for
(
var
index
in
groupChildren
)
{
if
(
groupChildren
[
index
]
.
comment
===
'single-data-model.xcdatamodeld'
)
{
found
=
true
;
break
;
}
}
test
.
ok
(
found
)
;
test
.
done
(
)
;
}
,
'should add to group specified by key'
:
function
(
test
)
{
var
group
=
'Frameworks'
,
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
,
proj
.
findPBXGroupKey
(
{
name
:
group
}
)
)
;
groupChildren
=
proj
.
pbxGroupByName
(
group
)
.
children
;
var
found
=
false
;
for
(
var
index
in
groupChildren
)
{
if
(
groupChildren
[
index
]
.
comment
===
path
.
basename
(
singleDataModelFilePath
)
)
{
found
=
true
;
break
;
}
}
test
.
ok
(
found
)
;
test
.
done
(
)
;
}
,
'should add to group specified by name'
:
function
(
test
)
{
var
group
=
'Frameworks'
,
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
,
group
)
;
groupChildren
=
proj
.
pbxGroupByName
(
group
)
.
children
;
var
found
=
false
;
for
(
var
index
in
groupChildren
)
{
if
(
groupChildren
[
index
]
.
comment
===
path
.
basename
(
singleDataModelFilePath
)
)
{
found
=
true
;
break
;
}
}
test
.
ok
(
found
)
;
test
.
done
(
)
;
}
,
'should add to the PBXSourcesBuildPhase'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
,
sources
=
proj
.
pbxSourcesBuildPhaseObj
(
)
;
test
.
equal
(
sources
.
files
.
length
,
2
+
1
)
;
test
.
done
(
)
;
}
,
'should create a XCVersionGroup section'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
,
xcVersionGroupSection
=
proj
.
xcVersionGroupSection
(
)
;
test
.
ok
(
xcVersionGroupSection
[
newFile
.
fileRef
]
)
;
test
.
done
(
)
;
}
,
'should populate the XCVersionGroup comment correctly'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
,
xcVersionGroupSection
=
proj
.
xcVersionGroupSection
(
)
,
commentKey
=
newFile
.
fileRef
+
'_comment'
;
test
.
equal
(
xcVersionGroupSection
[
commentKey
]
,
path
.
basename
(
singleDataModelFilePath
)
)
;
test
.
done
(
)
;
}
,
'should add the XCVersionGroup object correctly'
:
function
(
test
)
{
var
newFile
=
proj
.
addDataModelDocument
(
singleDataModelFilePath
)
,
xcVersionGroupSection
=
proj
.
xcVersionGroupSection
(
)
,
xcVersionGroupEntry
=
xcVersionGroupSection
[
newFile
.
fileRef
]
;
test
.
equal
(
xcVersionGroupEntry
.
isa
,
'XCVersionGroup'
)
;
test
.
equal
(
xcVersionGroupEntry
.
children
[
0
]
,
newFile
.
models
[
0
]
.
fileRef
)
;
test
.
equal
(
xcVersionGroupEntry
.
currentVersion
,
newFile
.
currentModel
.
fileRef
)
;
test
.
equal
(
xcVersionGroupEntry
.
name
,
path
.
basename
(
singleDataModelFilePath
)
)
;
// Need to validate against normalized path, since paths should contain forward slash on OSX
test
.
equal
(
xcVersionGroupEntry
.
path
,
singleDataModelFilePath
.
replace
(
/
\\
/
g
,
'/'
)
)
;
test
.
equal
(
xcVersionGroupEntry
.
sourceTree
,
'"<group>"'
)
;
test
.
equal
(
xcVersionGroupEntry
.
versionGroupType
,
'wrapper.xcdatamodel'
)
;
test
.
done
(
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL