2
2
Stub test file
3
3
TODO: Write unit tests for all interfaces
4
4
*/
5
- import { JSONEditor } from '../../src/core' ;
6
-
7
- const schema =
8
- {
9
- type :'object' ,
10
- properties :
11
- {
12
- name :{ type :"string" }
5
+ import { JSONEditor } from '../../src/core'
6
+
7
+ const schema = {
8
+ type : 'object' ,
9
+ properties : {
10
+ name : { type : 'string' }
13
11
}
14
12
}
15
13
16
-
17
- describe ( "JSONEditor" , function ( ) {
14
+ describe ( 'JSONEditor' , function ( ) {
15
+ let element
16
+ let editor
18
17
19
18
// inject the HTML fixture for the tests
20
- beforeEach ( function ( ) {
21
- var fixture = '<div id="fixture"></div>' ;
19
+ beforeEach ( ( ) => {
20
+ const fixture = '<div id="fixture"></div>'
22
21
23
- document . body . insertAdjacentHTML (
24
- 'afterbegin' ,
25
- fixture ) ;
26
- } ) ;
22
+ document . body . insertAdjacentHTML ( 'afterbegin' , fixture )
23
+ element = document . getElementById ( 'fixture' )
24
+ } )
27
25
28
26
// remove the html fixture from the DOM
29
- afterEach ( function ( ) {
30
- document . body . removeChild ( document . getElementById ( 'fixture' ) ) ;
31
- } ) ;
32
-
33
- it ( "should create an editor" , function ( ) {
34
- var element = document . getElementById ( 'fixture' ) ;
35
- console . log ( "Attempting to create new JSONEditor" ) ;
36
- var editor = new JSONEditor ( element , { schema :schema } ) ;
37
- expect ( editor ) . toBeTruthy ( ) ;
38
- } ) ;
39
- } )
27
+ afterEach ( ( ) => {
28
+ document . body . removeChild ( document . getElementById ( 'fixture' ) )
29
+ } )
30
+
31
+ it ( 'should create an editor' , ( ) => {
32
+ console . log ( 'Attempting to create new JSONEditor' )
33
+ editor = new JSONEditor ( element , { schema : schema } )
34
+ expect ( editor ) . toBeTruthy ( )
35
+ } )
36
+
37
+ it ( 'can add custom iconlib' , ( ) => {
38
+ const customMapping = {
39
+ collapse : 'key-down' ,
40
+ expand : 'key-right' ,
41
+ delete : 'trash' ,
42
+ edit : 'edit' ,
43
+ add : 'add' ,
44
+ subtract : 'minus' ,
45
+ cancel : 'check-circled' ,
46
+ save : 'create-file' ,
47
+ moveup : 'arrow-up' ,
48
+ moveright : 'arrow-right' ,
49
+ movedown : 'arrow-down' ,
50
+ moveleft : 'arrow-left' ,
51
+ copy : 'copy' ,
52
+ clear : 'close' ,
53
+ time : 'time' ,
54
+ calendar : 'calendar' ,
55
+ edit_properties : 'settings'
56
+ }
57
+ const customIconPrefix = 'mr-1 text-xl ki-'
58
+
59
+ class CustomIconLib extends JSONEditor . AbstractIconLib {
60
+ constructor ( ) {
61
+ super ( )
62
+ this . mapping = customMapping
63
+ this . icon_prefix = customIconPrefix
64
+ }
65
+ }
66
+ JSONEditor . defaults . iconlibs . myCustom = CustomIconLib
67
+ editor = new JSONEditor ( element , { schema : schema , iconlib : 'myCustom' } )
68
+ expect ( editor . iconlib . icon_prefix ) . toBe ( customIconPrefix )
69
+ } )
70
+
71
+ it ( 'can add custom theme' , ( ) => {
72
+ class CustomTheme extends JSONEditor . AbstractTheme { }
73
+ CustomTheme . rules = { '.slider:focus' : 'box-shadow:none' }
74
+ JSONEditor . defaults . themes . myCustom = CustomTheme
75
+ editor = new JSONEditor ( element , { schema : schema , theme : 'myCustom' } )
76
+ expect ( editor . theme ) . toBeTruthy ( )
77
+ } )
78
+
79
+ it ( 'can add custom editor' , ( ) => {
80
+ class CustomEditor extends JSONEditor . AbstractEditor { }
81
+ JSONEditor . defaults . editors . custom = CustomEditor
82
+ JSONEditor . defaults . resolvers . unshift ( ( schema ) => {
83
+ if ( schema . type === 'object' && schema . format === 'custom' ) {
84
+ return 'custom'
85
+ }
86
+ } )
87
+ const schema = {
88
+ type : 'object' ,
89
+ format : 'custom' ,
90
+ properties : {
91
+ name : { type : 'string' }
92
+ }
93
+ }
94
+ editor = new JSONEditor ( element , { schema : schema } )
95
+ expect ( editor ) . toBeTruthy ( )
96
+ } )
97
+ } )
0 commit comments