Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kwabena Antwi-Boasiako
slapos
Commits
9ca1bc92
Commit
9ca1bc92
authored
Sep 03, 2018
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: test asserting the json match our format
parent
dc428cf6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
slapos/test/test_json_schema.py
slapos/test/test_json_schema.py
+26
-5
No files found.
slapos/test/test_json_schema.py
View file @
9ca1bc92
...
@@ -29,6 +29,7 @@ import unittest
...
@@ -29,6 +29,7 @@ import unittest
import
os
import
os
import
glob
import
glob
import
json
import
json
import
collections
import
slapos.test
import
slapos.test
import
jsonschema
import
jsonschema
...
@@ -41,20 +42,39 @@ def getSchemaValidator(filename):
...
@@ -41,20 +42,39 @@ def getSchemaValidator(filename):
json_file
.
close
()
json_file
.
close
()
return
json_dict
return
json_dict
def
createTest
(
path
,
json_dict
):
def
createValidatorTest
(
path
,
json_dict
):
# Test that json is valid
def
run
(
self
,
*
args
,
**
kwargs
):
def
run
(
self
,
*
args
,
**
kwargs
):
with
open
(
path
,
"r"
)
as
json_file
:
with
open
(
path
,
"r"
)
as
json_file
:
self
.
assertEquals
(
jsonschema
.
validate
(
json
.
loads
(
json_file
.
read
()),
json_dict
),
None
)
self
.
assertEqual
(
jsonschema
.
validate
(
json
.
load
(
json_file
),
json_dict
),
None
)
json_file
.
close
()
return
run
return
run
def
createFormatTest
(
path
,
json_dict
):
# Test that json match our formatting rules
def
run
(
self
,
*
args
,
**
kwargs
):
with
open
(
path
,
"r"
)
as
json_file
:
content
=
json_file
.
read
()
# this is the format produced by `format-json` tool at the
# root of this repository.
# XXX it would be better to reuse the code.
self
.
assertEqual
(
(
json
.
dumps
(
json
.
loads
(
content
,
object_pairs_hook
=
collections
.
OrderedDict
),
sort_keys
=
False
,
indent
=
2
,
separators
=
(
','
,
': '
))
+
"
\
n
"
).
splitlines
(),
content
.
splitlines
())
return
run
def
generateSoftwareCfgTest
():
def
generateSoftwareCfgTest
():
json_dict
=
getSchemaValidator
(
"schema.json"
)
json_dict
=
getSchemaValidator
(
"schema.json"
)
base_path
=
"/"
.
join
(
slapos
.
test
.
__file__
.
split
(
"/"
)[:
-
3
])
base_path
=
"/"
.
join
(
slapos
.
test
.
__file__
.
split
(
"/"
)[:
-
3
])
for
path
in
glob
.
glob
(
"%s/software/*/software.cfg.json"
%
base_path
):
for
path
in
glob
.
glob
(
"%s/software/*/software.cfg.json"
%
base_path
):
test_name
=
"test_%s_software_cfg_json"
%
path
.
split
(
"/"
)[
-
2
]
test_name
=
"test_%s_software_cfg_json"
%
path
.
split
(
"/"
)[
-
2
]
setattr
(
TestJSONSchemaValidation
,
test_name
,
createTest
(
path
,
json_dict
))
setattr
(
TestJSONSchemaValidation
,
test_name
,
createValidatorTest
(
path
,
json_dict
))
setattr
(
TestJSONSchemaValidation
,
test_name
+
'_format'
,
createFormatTest
(
path
,
json_dict
))
def
generateJSONSchemaTest
():
def
generateJSONSchemaTest
():
...
@@ -64,7 +84,8 @@ def generateJSONSchemaTest():
...
@@ -64,7 +84,8 @@ def generateJSONSchemaTest():
software_type
=
path
.
split
(
"/"
)[
-
2
]
software_type
=
path
.
split
(
"/"
)[
-
2
]
filename
=
path
.
split
(
"/"
)[
-
1
].
replace
(
"-"
,
"_"
).
replace
(
"."
,
"_"
)
filename
=
path
.
split
(
"/"
)[
-
1
].
replace
(
"-"
,
"_"
).
replace
(
"."
,
"_"
)
test_name
=
"test_schema_%s_%s"
%
(
software_type
,
filename
)
test_name
=
"test_schema_%s_%s"
%
(
software_type
,
filename
)
setattr
(
TestJSONSchemaValidation
,
test_name
,
createTest
(
path
,
json_dict
))
setattr
(
TestJSONSchemaValidation
,
test_name
,
createValidatorTest
(
path
,
json_dict
))
setattr
(
TestJSONSchemaValidation
,
test_name
+
'_format'
,
createFormatTest
(
path
,
json_dict
))
class
TestJSONSchemaValidation
(
unittest
.
TestCase
):
class
TestJSONSchemaValidation
(
unittest
.
TestCase
):
pass
pass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment