@wirenboard/json-editor 2.5.3-wb13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (283) hide show
  1. package/.env-dist +2 -0
  2. package/.eslintrc +7 -0
  3. package/.gitattributes +1 -0
  4. package/.github/PULL_REQUEST_TEMPLATE.md +9 -0
  5. package/.github/issue_template +25 -0
  6. package/.github/workflows/build.yml +58 -0
  7. package/.travis.yml +70 -0
  8. package/CHANGELOG.md +915 -0
  9. package/CONTRIBUTING.md +92 -0
  10. package/LICENSE +20 -0
  11. package/Makefile +26 -0
  12. package/README.md +1646 -0
  13. package/README_ADDON.md +573 -0
  14. package/UPGRADING.md +46 -0
  15. package/build/CssToJson.js +55 -0
  16. package/codecept.conf.js +35 -0
  17. package/config/.eslintrc +7 -0
  18. package/config/codeceptjs_helpers.js +139 -0
  19. package/config/helpers.js +10 -0
  20. package/config/karma.conf.js +93 -0
  21. package/config/readme.md +31 -0
  22. package/config/webpack.common.js +75 -0
  23. package/config/webpack.dev.js +15 -0
  24. package/config/webpack.nonmin.js +19 -0
  25. package/config/webpack.prod.js +25 -0
  26. package/dist/jsoneditor.js +14 -0
  27. package/dist/nonmin/jsoneditor.js +29097 -0
  28. package/dist/nonmin/jsoneditor.js.map +1 -0
  29. package/docs/ace_editor.html +56 -0
  30. package/docs/advanced.html +136 -0
  31. package/docs/basic.html +63 -0
  32. package/docs/basic_person.json +26 -0
  33. package/docs/choices.html +86 -0
  34. package/docs/cleave.html +132 -0
  35. package/docs/colorpicker.html +194 -0
  36. package/docs/css_integration.html +135 -0
  37. package/docs/datetime.html +305 -0
  38. package/docs/describedby.html +161 -0
  39. package/docs/enumsource.html +67 -0
  40. package/docs/images/categoriesDemo.png +0 -0
  41. package/docs/images/inheritance_tree.png +0 -0
  42. package/docs/images/jsoneditor.png +0 -0
  43. package/docs/imask.html +192 -0
  44. package/docs/index.html +579 -0
  45. package/docs/materialize_css.html +164 -0
  46. package/docs/meta_schema.json +705 -0
  47. package/docs/multiple_upload_base64.html +65 -0
  48. package/docs/person.json +73 -0
  49. package/docs/polyfills/assign.js +29 -0
  50. package/docs/radio.html +156 -0
  51. package/docs/recursive.html +170 -0
  52. package/docs/select2.html +99 -0
  53. package/docs/selectize.html +100 -0
  54. package/docs/signature.html +42 -0
  55. package/docs/starrating.html +137 -0
  56. package/docs/upload.html +131 -0
  57. package/docs/uuid.html +70 -0
  58. package/docs/wysiwyg.html +56 -0
  59. package/jasmine.json +11 -0
  60. package/json-editor-json-editor-2.5.3-wb13.tgz +0 -0
  61. package/package.json +100 -0
  62. package/release-notes.md +88 -0
  63. package/src/core.js +412 -0
  64. package/src/defaults.js +402 -0
  65. package/src/editor.js +707 -0
  66. package/src/editors/ace.js +89 -0
  67. package/src/editors/array/choices.js +103 -0
  68. package/src/editors/array/select2.js +110 -0
  69. package/src/editors/array/selectize.js +103 -0
  70. package/src/editors/array.css +9 -0
  71. package/src/editors/array.css.js +3 -0
  72. package/src/editors/array.js +818 -0
  73. package/src/editors/autocomplete.js +58 -0
  74. package/src/editors/base64.js +157 -0
  75. package/src/editors/button.js +97 -0
  76. package/src/editors/checkbox.js +95 -0
  77. package/src/editors/choices.css +3 -0
  78. package/src/editors/choices.css.js +3 -0
  79. package/src/editors/choices.js +69 -0
  80. package/src/editors/colorpicker.js +103 -0
  81. package/src/editors/datetime.js +141 -0
  82. package/src/editors/describedby.js +188 -0
  83. package/src/editors/enum.js +136 -0
  84. package/src/editors/hidden.js +127 -0
  85. package/src/editors/index.js +81 -0
  86. package/src/editors/info.js +20 -0
  87. package/src/editors/integer.js +19 -0
  88. package/src/editors/ip.js +36 -0
  89. package/src/editors/jodit.js +64 -0
  90. package/src/editors/multiple.js +409 -0
  91. package/src/editors/multiselect.js +218 -0
  92. package/src/editors/null.js +18 -0
  93. package/src/editors/number.js +51 -0
  94. package/src/editors/object.css +41 -0
  95. package/src/editors/object.css.js +3 -0
  96. package/src/editors/object.js +1290 -0
  97. package/src/editors/radio.js +111 -0
  98. package/src/editors/sceditor.js +72 -0
  99. package/src/editors/select.js +370 -0
  100. package/src/editors/select2.js +110 -0
  101. package/src/editors/selectize.js +112 -0
  102. package/src/editors/signature.js +113 -0
  103. package/src/editors/simplemde.js +100 -0
  104. package/src/editors/starrating.css +52 -0
  105. package/src/editors/starrating.css.js +3 -0
  106. package/src/editors/starrating.js +135 -0
  107. package/src/editors/stepper.js +27 -0
  108. package/src/editors/string.js +372 -0
  109. package/src/editors/table.js +516 -0
  110. package/src/editors/upload.js +321 -0
  111. package/src/editors/uuid.js +56 -0
  112. package/src/iconlib.js +24 -0
  113. package/src/iconlibs/bootstrap2.js +28 -0
  114. package/src/iconlibs/bootstrap3.js +28 -0
  115. package/src/iconlibs/fontawesome3.js +28 -0
  116. package/src/iconlibs/fontawesome4.js +28 -0
  117. package/src/iconlibs/fontawesome5.js +28 -0
  118. package/src/iconlibs/foundation2.js +24 -0
  119. package/src/iconlibs/foundation3.js +28 -0
  120. package/src/iconlibs/index.js +25 -0
  121. package/src/iconlibs/jqueryui.js +28 -0
  122. package/src/iconlibs/materialicons.js +49 -0
  123. package/src/iconlibs/openiconic.js +28 -0
  124. package/src/iconlibs/spectre.js +28 -0
  125. package/src/resolvers.js +128 -0
  126. package/src/schemaloader.js +408 -0
  127. package/src/style.css +150 -0
  128. package/src/style.css.js +3 -0
  129. package/src/templates/default.js +52 -0
  130. package/src/templates/ejs.js +13 -0
  131. package/src/templates/handlebars.js +1 -0
  132. package/src/templates/hogan.js +10 -0
  133. package/src/templates/index.js +21 -0
  134. package/src/templates/lodash.js +9 -0
  135. package/src/templates/markup.js +9 -0
  136. package/src/templates/mustache.js +9 -0
  137. package/src/templates/swig.js +1 -0
  138. package/src/templates/underscore.js +9 -0
  139. package/src/theme.js +659 -0
  140. package/src/themes/barebones.css +35 -0
  141. package/src/themes/barebones.css.js +3 -0
  142. package/src/themes/barebones.js +28 -0
  143. package/src/themes/bootstrap2.js +319 -0
  144. package/src/themes/bootstrap3.css +0 -0
  145. package/src/themes/bootstrap3.css.js +3 -0
  146. package/src/themes/bootstrap3.js +315 -0
  147. package/src/themes/bootstrap4.css +89 -0
  148. package/src/themes/bootstrap4.css.js +3 -0
  149. package/src/themes/bootstrap4.js +690 -0
  150. package/src/themes/bootstrap5.css.js +3 -0
  151. package/src/themes/foundation.js +569 -0
  152. package/src/themes/html.css +60 -0
  153. package/src/themes/html.css.js +3 -0
  154. package/src/themes/html.js +71 -0
  155. package/src/themes/index.js +28 -0
  156. package/src/themes/jqueryui.js +198 -0
  157. package/src/themes/materialize.js +426 -0
  158. package/src/themes/spectre.css +208 -0
  159. package/src/themes/spectre.css.js +3 -0
  160. package/src/themes/spectre.js +406 -0
  161. package/src/themes/tailwind.css +249 -0
  162. package/src/themes/tailwind.css.js +3 -0
  163. package/src/themes/tailwind.js +443 -0
  164. package/src/utilities.js +138 -0
  165. package/src/validator.js +877 -0
  166. package/src/validators/ip-validator.js +51 -0
  167. package/tests/Dockerfile +3 -0
  168. package/tests/README.md +48 -0
  169. package/tests/codeceptjs/codecept.json +42 -0
  170. package/tests/codeceptjs/constrains/if-then-else_test.js +143 -0
  171. package/tests/codeceptjs/core_test.js +217 -0
  172. package/tests/codeceptjs/editors/advanced_test.js +13 -0
  173. package/tests/codeceptjs/editors/array_any_of_test.js +50 -0
  174. package/tests/codeceptjs/editors/array_test.js +900 -0
  175. package/tests/codeceptjs/editors/button_test.js +35 -0
  176. package/tests/codeceptjs/editors/checkbox_test.js +21 -0
  177. package/tests/codeceptjs/editors/colorpicker_test.js +27 -0
  178. package/tests/codeceptjs/editors/datetime_test.js +33 -0
  179. package/tests/codeceptjs/editors/inheritance_test.js +11 -0
  180. package/tests/codeceptjs/editors/integer_test.js +84 -0
  181. package/tests/codeceptjs/editors/issues/issue-gh-812_test.js +32 -0
  182. package/tests/codeceptjs/editors/jodit_test.js +24 -0
  183. package/tests/codeceptjs/editors/multiselect_test.js +8 -0
  184. package/tests/codeceptjs/editors/number_test.js +82 -0
  185. package/tests/codeceptjs/editors/object_test.js +204 -0
  186. package/tests/codeceptjs/editors/option-no_default_values_test.js +42 -0
  187. package/tests/codeceptjs/editors/programmatic-changes_test.js +20 -0
  188. package/tests/codeceptjs/editors/radio_test.js +10 -0
  189. package/tests/codeceptjs/editors/rating_test.js +13 -0
  190. package/tests/codeceptjs/editors/select_test.js +22 -0
  191. package/tests/codeceptjs/editors/stepper_test.js +27 -0
  192. package/tests/codeceptjs/editors/string_test.js +118 -0
  193. package/tests/codeceptjs/editors/table-confirm-delete_test.js +67 -0
  194. package/tests/codeceptjs/editors/tabs_test.js +14 -0
  195. package/tests/codeceptjs/editors/uuid_test.js +21 -0
  196. package/tests/codeceptjs/editors/validation_test.js +14 -0
  197. package/tests/codeceptjs/meta-schema_test.js +17 -0
  198. package/tests/codeceptjs/schemaloader_test.js +13 -0
  199. package/tests/codeceptjs/steps.d.ts +13 -0
  200. package/tests/codeceptjs/steps_file.js +12 -0
  201. package/tests/codeceptjs/themes_test.js +519 -0
  202. package/tests/docker-compose.yml +34 -0
  203. package/tests/fixtures/basic_person.json +26 -0
  204. package/tests/fixtures/nested_object.json +26 -0
  205. package/tests/fixtures/person.json +55 -0
  206. package/tests/fixtures/recursive.json +8 -0
  207. package/tests/fixtures/some_types.json +32 -0
  208. package/tests/fixtures/string.json +3 -0
  209. package/tests/fixtures/validation.json +1140 -0
  210. package/tests/pages/_demo.html +475 -0
  211. package/tests/pages/advanced.html +137 -0
  212. package/tests/pages/anyof.html +80 -0
  213. package/tests/pages/array-anyof.html +142 -0
  214. package/tests/pages/array-checkboxes.html +41 -0
  215. package/tests/pages/array-choices.html +45 -0
  216. package/tests/pages/array-integers.html +37 -0
  217. package/tests/pages/array-move-events.html +61 -0
  218. package/tests/pages/array-multiselects.html +42 -0
  219. package/tests/pages/array-nested-arrays.html +40 -0
  220. package/tests/pages/array-numbers.html +37 -0
  221. package/tests/pages/array-objects.html +42 -0
  222. package/tests/pages/array-ratings.html +40 -0
  223. package/tests/pages/array-selectize.html +51 -0
  224. package/tests/pages/array-selects.html +36 -0
  225. package/tests/pages/array-strings.html +36 -0
  226. package/tests/pages/array.html +42 -0
  227. package/tests/pages/assets/pages.css +130 -0
  228. package/tests/pages/button-callbacks.html +77 -0
  229. package/tests/pages/checkbox-labels.html +114 -0
  230. package/tests/pages/colorpicker-no-3rd-party.html +43 -0
  231. package/tests/pages/colorpicker-use-vanilla-picker.html +50 -0
  232. package/tests/pages/core.html +118 -0
  233. package/tests/pages/datetime.html +76 -0
  234. package/tests/pages/form-name.html +108 -0
  235. package/tests/pages/grid-strict.html +311 -0
  236. package/tests/pages/grid.html +284 -0
  237. package/tests/pages/if-then-else-allOf.html +117 -0
  238. package/tests/pages/inheritance.html +76 -0
  239. package/tests/pages/integer.html +68 -0
  240. package/tests/pages/issues/_template.html +50 -0
  241. package/tests/pages/issues/issue-gh-812.html +110 -0
  242. package/tests/pages/issues/issue-gh-823-meta-schema.html +35 -0
  243. package/tests/pages/issues/issue-gh-848.html +81 -0
  244. package/tests/pages/meta_schema.json +705 -0
  245. package/tests/pages/number.html +89 -0
  246. package/tests/pages/object-no-additional-properties.html +65 -0
  247. package/tests/pages/object-no-duplicated-id.html +68 -0
  248. package/tests/pages/object-required-properties.html +236 -0
  249. package/tests/pages/object-with-dependencies-array.html +46 -0
  250. package/tests/pages/object-with-dependencies.html +60 -0
  251. package/tests/pages/object.html +79 -0
  252. package/tests/pages/oneof.html +103 -0
  253. package/tests/pages/option-no_default_values.html +58 -0
  254. package/tests/pages/programmatic-changes.html +120 -0
  255. package/tests/pages/read-only.html +105 -0
  256. package/tests/pages/select.html +41 -0
  257. package/tests/pages/stepper.html +59 -0
  258. package/tests/pages/string-ace-editor.html +52 -0
  259. package/tests/pages/string-cleave.html +46 -0
  260. package/tests/pages/string-custom-attributes.html +62 -0
  261. package/tests/pages/string-formats.html +52 -0
  262. package/tests/pages/string-formats2.html +57 -0
  263. package/tests/pages/string-jodit-editor.html +49 -0
  264. package/tests/pages/string-sceditor.html +62 -0
  265. package/tests/pages/table-move-events.html +56 -0
  266. package/tests/pages/table.html +46 -0
  267. package/tests/pages/tabs.html +131 -0
  268. package/tests/pages/themes.html +527 -0
  269. package/tests/pages/translate-property.html +247 -0
  270. package/tests/pages/urn.html +93 -0
  271. package/tests/pages/uuid.html +72 -0
  272. package/tests/pages/validation.html +99 -0
  273. package/tests/unit/.eslintrc +8 -0
  274. package/tests/unit/core.spec.js +309 -0
  275. package/tests/unit/defaults.spec.js +40 -0
  276. package/tests/unit/editor.spec.js +160 -0
  277. package/tests/unit/editors/array.spec.js +86 -0
  278. package/tests/unit/editors/object.spec.js +79 -0
  279. package/tests/unit/editors/table.spec.js +91 -0
  280. package/tests/unit/readme.md +35 -0
  281. package/tests/unit/schemaloader.spec.js +498 -0
  282. package/tests/unit/validator.spec.js +94 -0
  283. package/tests/unit/validators/ip-validator.spec.js +62 -0
@@ -0,0 +1,35 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('button');
4
+
5
+ Scenario('should work with button editor callbacks', async (I) => {
6
+ I.amOnPage('button-callbacks.html');
7
+ I.seeElement('[data-schemapath="root.button1"] button');
8
+ I.click('[data-schemapath="root.button1"] button');
9
+ assert.equal(await I.grabValueFrom('.value'), 'button1CB');
10
+ });
11
+
12
+ Scenario('should work with option "validated"', async (I) => {
13
+ I.amOnPage('button-callbacks.html');
14
+ I.seeElement('[data-schemapath="root.button1"] button');
15
+ I.seeDisabledAttribute('[data-schemapath="root.button2"] button');
16
+
17
+ await I.fillField('[name="root[textinput]"]', 'Hello World');
18
+
19
+ I.pressKey('Tab');
20
+ I.dontSeeDisabledAttribute('[data-schemapath="root.button2"] button');
21
+ I.click('[data-schemapath="root.button2"] button');
22
+ assert.equal(await I.grabValueFrom('.value'), 'button2CB');
23
+ });
24
+
25
+ Scenario('should not leave any footprints in result', async (I) => {
26
+ I.amOnPage('button-callbacks.html');
27
+ I.click('.get-value');
28
+ assert.equal(await I.grabValueFrom('.value'), JSON.stringify({"textinput":""}));
29
+ });
30
+
31
+ Scenario('should be disabled if "readonly" is specified', async (I) => {
32
+ I.amOnPage('read-only.html');
33
+
34
+ I.seeDisabledAttribute('[data-schemapath="root.button"] button');
35
+ });
@@ -0,0 +1,21 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('checkbox');
4
+
5
+ Scenario('should be disabled if "readonly" is specified', async (I) => {
6
+ I.amOnPage('read-only.html');
7
+ I.waitForText('READY', 5, '.state');
8
+ I.seeDisabledAttribute('[name="root[checkbox]"]');
9
+ });
10
+
11
+ Scenario('label should be visible for items at top level, but not in tables', async (I) => {
12
+ I.amOnPage('checkbox-labels.html');
13
+ I.waitForText('READY', 5, '.state');
14
+ I.seeElement('//label[contains(@for, "root[Awesome Compact]")]');
15
+ I.seeElement('//label[contains(@for, "root[Awesome Not Compact]")]');
16
+ I.dontSeeElement('//label[contains(@for, "root[pets][0][Awesome in Object Table]")]');
17
+ I.dontSeeElement('//label[contains(@for, "root[pets][1][Awesome in Object Table]")]');
18
+ I.dontSeeElement('//label[contains(@for, "root[pets][2][Awesome in Object Table]")]');
19
+ I.dontSeeElement('//label[contains(@for, "root[pets][3][Awesome in Object Table]")]');
20
+ I.dontSeeElement('//label[contains(@for, "root[pets][4][Awesome in Object Table]")]');
21
+ });
@@ -0,0 +1,27 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('colorpicker');
4
+
5
+ Scenario('test ColorPicker Editor without third party library', async (I) => {
6
+ I.amOnPage('colorpicker-no-3rd-party.html');
7
+ I.seeElement('[name="root[colorpicker]');
8
+ I.click('.get-value');
9
+ assert.equal(await I.grabValueFrom('.debug'), JSON.stringify({"colorpicker":"#efefef"}));
10
+ });
11
+
12
+ Scenario('test ColorPicker Editor using vanilla-picker', async (I) => {
13
+ I.amOnPage('colorpicker-use-vanilla-picker.html');
14
+ I.click('.get-value');
15
+ assert.equal(await I.grabValueFrom('.debug'), JSON.stringify({"colorpicker":"rgba(0,0,0,1)"}));
16
+ I.click('[data-schemapath="root.colorpicker"]');
17
+ I.seeElement('[name="root[colorpicker]"]');
18
+ await I.dragAndDrop('[data-schemapath="root.colorpicker"] .picker_wrapper .picker_sl .picker_selector', '[data-schemapath="root.colorpicker"] .picker_wrapper .picker_sl')
19
+ await I.dragAndDrop('[data-schemapath="root.colorpicker"] .picker_wrapper .picker_hue .picker_selector', '[data-schemapath="root.colorpicker"] .picker_wrapper .picker_hue')
20
+ await I.dragAndDrop('[data-schemapath="root.colorpicker"] .picker_wrapper .picker_alpha .picker_selector', '[data-schemapath="root.colorpicker"] .picker_wrapper .picker_alpha')
21
+ I.click('.picker_done button')
22
+ // I.click('.get-value');
23
+ I.click('.get-value');
24
+ const color = await I.grabValueFrom('.debug')
25
+ const reg = /\{"colorpicker":"rgba\(6\d,19\d,19\d,0.5\d*\)"\}/;
26
+ assert.ok(reg.test(color), color + ' match ' + reg);
27
+ });
@@ -0,0 +1,33 @@
1
+ /* global Feature Scenario */
2
+
3
+ const assert = require('assert')
4
+
5
+ const today = (offset) => {
6
+ const t = new Date()
7
+ t.setDate(t.getDate() + (offset || 0))
8
+ return t.toISOString().split('T')[0]
9
+ }
10
+
11
+ Feature('datetime')
12
+
13
+ Scenario('should have correct initial value @datetime', async (I) => {
14
+ I.amOnPage('datetime.html')
15
+ I.wait(1)
16
+ I.click('#get-value')
17
+ assert.equal(await I.grabValueFrom('#value'), '{"time":"12:00","date":"' + today() + '","datetimelocal":"' + today() + 'T00:00' + '"}')
18
+ })
19
+
20
+ Scenario('time should have max and min attributes @datetime', async (I) => {
21
+ assert.equal(await I.grabAttributeFrom('[name="root[time]"]', 'min'), '11:00')
22
+ assert.equal(await I.grabAttributeFrom('[name="root[time]"]', 'max'), '13:00')
23
+ })
24
+
25
+ Scenario('date should have max and min attributes @datetime', async (I) => {
26
+ assert.equal(await I.grabAttributeFrom('[name="root[date]"]', 'min'), '1970-01-01')
27
+ assert.equal(await I.grabAttributeFrom('[name="root[date]"]', 'max'), '2100-01-01')
28
+ })
29
+
30
+ Scenario('datetimelocal should have max and min attributes @datetime', async (I) => {
31
+ assert.equal(await I.grabAttributeFrom('[name="root[datetimelocal]"]', 'min'), '1970-01-01T00:00')
32
+ assert.equal(await I.grabAttributeFrom('[name="root[datetimelocal]"]', 'max'), '2100-01-01T00:00')
33
+ })
@@ -0,0 +1,11 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('inheritance');
4
+
5
+ Scenario('should display all required fields in the allOf hierarchy', async (I) => {
6
+ I.amOnPage('inheritance.html');
7
+ I.seeElement('[data-schemapath="root.breed"]');
8
+ I.seeElement('[data-schemapath="root.numLegs"]');
9
+ I.seeElement('[data-schemapath="root.id"]');
10
+ });
11
+
@@ -0,0 +1,84 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('integer');
4
+
5
+ Scenario('should have correct initial value', async (I) => {
6
+ I.amOnPage('integer.html');
7
+ I.click('.get-value');
8
+ assert.equal(await I.grabValueFrom('.value'), '{"integer":5,"integer_number":5,"integer_range":5}');
9
+ });
10
+
11
+ Scenario('should respect step by incrementing and decrementing the value of a number', async (I) => {
12
+ I.amOnPage('integer.html');
13
+ I.seeElement('[data-schemapath="root.integer"] input');
14
+ I.executeScript(function() {
15
+ var range = document.querySelector('[data-schemapath="root.integer_number"] input');
16
+ range.stepUp();
17
+ var event = new Event('change', {
18
+ 'bubbles': true,
19
+ 'cancelable': true
20
+ });
21
+ range.dispatchEvent(event);
22
+ });
23
+ I.click('.get-value');
24
+ assert.equal(await I.grabValueFrom('.value'), '{"integer":5,"integer_number":10,"integer_range":5}');
25
+ I.executeScript(function() {
26
+ var range = document.querySelector('[data-schemapath="root.integer_number"] input');
27
+ range.stepDown();
28
+ var event = new Event('change', {
29
+ 'bubbles': true,
30
+ 'cancelable': true
31
+ });
32
+ range.dispatchEvent(event);
33
+ });
34
+ I.click('.get-value');
35
+ assert.equal(await I.grabValueFrom('.value'), '{"integer":5,"integer_number":5,"integer_range":5}');
36
+ });
37
+
38
+ Scenario('should respect step by incrementing and decrementing the value of a range', async (I) => {
39
+ I.amOnPage('integer.html');
40
+ I.seeElement('[data-schemapath="root.integer_range"] input');
41
+ I.executeScript(function() {
42
+ var range = document.querySelector('[data-schemapath="root.integer_range"] input');
43
+ range.stepUp();
44
+ var event = new Event('change', {
45
+ 'bubbles': true,
46
+ 'cancelable': true
47
+ });
48
+ range.dispatchEvent(event);
49
+ });
50
+ I.click('.get-value');
51
+ assert.equal(await I.grabValueFrom('.value'), '{"integer":5,"integer_number":5,"integer_range":10}');
52
+ I.executeScript(function() {
53
+ var range = document.querySelector('[data-schemapath="root.integer_range"] input');
54
+ range.stepDown();
55
+ var event = new Event('change', {
56
+ 'bubbles': true,
57
+ 'cancelable': true
58
+ });
59
+ range.dispatchEvent(event);
60
+ });
61
+ I.click('.get-value');
62
+ assert.equal(await I.grabValueFrom('.value'), '{"integer":5,"integer_number":5,"integer_range":5}');
63
+ });
64
+
65
+ Scenario('should be readonly if specified and not disabled', async (I) => {
66
+ I.amOnPage('read-only.html');
67
+ I.seeReadOnlyAttribute('[name="root[integer]"]');
68
+ });
69
+
70
+ Scenario('should update output when setValue is called', async (I) => {
71
+ I.amOnPage('integer.html');
72
+ I.click('.set-value');
73
+ I.see('2', '[data-schemapath="root.integer_range"] output');
74
+ });
75
+
76
+ Scenario('should validate value', async (I) => {
77
+ I.amOnPage('integer.html');
78
+ await I.fillField('[name="root[integer]"]', '5-5');
79
+ I.click('.get-value');
80
+ I.see('Value must be of type integer.', '[data-schemapath="root.integer"] div');
81
+ assert.equal(await I.grabValueFrom('.value'), '{"integer":"5-5","integer_number":5,"integer_range":5}');
82
+ });
83
+
84
+
@@ -0,0 +1,32 @@
1
+ /* global Feature Scenario */
2
+
3
+ const assert = require('assert')
4
+ let value
5
+
6
+ Feature('issues')
7
+
8
+ Scenario('GitHub issue 812 should remain fixed @issue-812', async (I) => {
9
+ I.amOnPage('issues/issue-gh-812.html')
10
+
11
+ I.click('.get-value')
12
+ value = await I.grabValueFrom('.debug')
13
+ assert.equal(value, '{"students":[{"name":"AAA","sessions":[{"student_name":"AAA","minutes":15},{"student_name":"AAA","minutes":15}]},{"name":"BBB","sessions":[{"student_name":"BBB","minutes":20}]},{"name":"CCC","sessions":[{"student_name":"CCC","minutes":10}]}]}')
14
+
15
+ I.amAcceptingPopups()
16
+ I.click('//*[@id="root.students.0"]/span[2]/button[contains(@class, "json-editor-btn-delete") and @data-i="0"]')
17
+ I.retry({ retries: 5, minTimeout: 500 }).seeInPopup('Are you sure you want to remove this node?')
18
+ I.acceptPopup()
19
+
20
+ I.click('.get-value')
21
+ value = await I.grabValueFrom('.debug')
22
+ assert.equal(value, '{"students":[{"name":"BBB","sessions":[{"student_name":"BBB","minutes":20}]},{"name":"CCC","sessions":[{"student_name":"CCC","minutes":10}]}]}')
23
+
24
+ I.amAcceptingPopups()
25
+ I.click('//*[@id="root.students.0"]/span[2]/button[contains(@class, "json-editor-btn-delete") and @data-i="0"]')
26
+ I.retry({ retries: 5, minTimeout: 500 }).seeInPopup('Are you sure you want to remove this node?')
27
+ I.acceptPopup()
28
+
29
+ I.click('.get-value')
30
+ value = await I.grabValueFrom('.debug')
31
+ assert.equal(value, '{"students":[{"name":"CCC","sessions":[{"student_name":"CCC","minutes":10}]}]}')
32
+ })
@@ -0,0 +1,24 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('jodit');
4
+
5
+ Scenario('should have correct initial value', async (I) => {
6
+ I.amOnPage('string-jodit-editor.html');
7
+ I.click('.get-value');
8
+ assert.equal(await I.grabValueFrom('.debug'), '[]');
9
+ });
10
+
11
+ Scenario('should have coerent values', async (I) => {
12
+ I.amOnPage('string-jodit-editor.html');
13
+ I.click('Add item');
14
+ I.see('item 1');
15
+ I.seeElement('.jodit_wysiwyg');
16
+
17
+ I.click('.jodit_toolbar_btn-bold a');
18
+ I.pressKeys('__JODIT__');
19
+ I.see('__JODIT__');
20
+
21
+ I.click('.get-value');
22
+ assert.equal(await I.grabValueFrom('.debug'), JSON.stringify([{"editor":"<strong>__JODIT__</strong>"}]));
23
+
24
+ });
@@ -0,0 +1,8 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('multiselect');
4
+
5
+ Scenario('should be disabled if "readonly" is specified', async (I) => {
6
+ I.amOnPage('read-only.html');
7
+ I.seeDisabledAttribute('[name="root[multiselect]"]');
8
+ });
@@ -0,0 +1,82 @@
1
+ var assert = require('assert');
2
+
3
+ Feature('number');
4
+
5
+ Scenario('should have correct initial value', async (I) => {
6
+ I.amOnPage('number.html');
7
+ I.click('.get-value');
8
+ assert.equal(await I.grabValueFrom('.value'), '{"number":5.75,"number_number":5.75,"number_range":5.75}');
9
+ });
10
+
11
+ Scenario('should validate value', async (I) => {
12
+ I.amOnPage('number.html');
13
+ await I.fillField('[name="root[number]"]', '12-12');
14
+ I.click('.get-value');
15
+ I.waitForText('Value must be of type number.', 5, '[data-schemapath="root.number"] .invalid-feedback');
16
+ assert.equal(await I.grabValueFrom('.value'), '{"number":"12-12","number_number":5.75,"number_range":5.75}');
17
+ });
18
+
19
+ Scenario('should respect step by incrementing and decrementing the value of a number', async (I) => {
20
+ I.amOnPage('number.html');
21
+ I.seeElement('[data-schemapath="root.number_number"] input');
22
+ I.executeScript(function() {
23
+ var range = document.querySelector('[data-schemapath="root.number_number"] input');
24
+ range.stepUp();
25
+ var event = new Event('change', {
26
+ 'bubbles': true,
27
+ 'cancelable': true
28
+ });
29
+ range.dispatchEvent(event);
30
+ });
31
+ I.click('.get-value');
32
+ assert.equal(await I.grabValueFrom('.value'), '{"number":5.75,"number_number":6,"number_range":5.75}');
33
+ I.executeScript(function() {
34
+ var range = document.querySelector('[data-schemapath="root.number_number"] input');
35
+ range.stepDown();
36
+ var event = new Event('change', {
37
+ 'bubbles': true,
38
+ 'cancelable': true
39
+ });
40
+ range.dispatchEvent(event);
41
+ });
42
+ I.click('.get-value');
43
+ assert.equal(await I.grabValueFrom('.value'), '{"number":5.75,"number_number":5.75,"number_range":5.75}');
44
+ });
45
+
46
+ Scenario('should respect step by incrementing and decrementing the value of a range', async (I) => {
47
+ I.amOnPage('number.html');
48
+ I.seeElement('[data-schemapath="root.number_range"] input');
49
+ I.executeScript(function() {
50
+ var range = document.querySelector('[data-schemapath="root.number_range"] input');
51
+ range.stepUp();
52
+ var event = new Event('change', {
53
+ 'bubbles': true,
54
+ 'cancelable': true
55
+ });
56
+ range.dispatchEvent(event);
57
+ });
58
+ I.click('.get-value');
59
+ assert.equal(await I.grabValueFrom('.value'), '{"number":5.75,"number_number":5.75,"number_range":6}');
60
+ I.executeScript(function() {
61
+ var range = document.querySelector('[data-schemapath="root.number_range"] input');
62
+ range.stepDown();
63
+ var event = new Event('change', {
64
+ 'bubbles': true,
65
+ 'cancelable': true
66
+ });
67
+ range.dispatchEvent(event);
68
+ });
69
+ I.click('.get-value');
70
+ assert.equal(await I.grabValueFrom('.value'), '{"number":5.75,"number_number":5.75,"number_range":5.75}');
71
+ });
72
+
73
+ Scenario('should be readonly if specified and not disabled', async (I) => {
74
+ I.amOnPage('read-only.html');
75
+ I.seeReadOnlyAttribute('[name="root[number]"]');
76
+ });
77
+
78
+ Scenario('should update output when setValue is called', async (I) => {
79
+ I.amOnPage('number.html');
80
+ I.click('.set-value');
81
+ I.see('2', '[data-schemapath="root.number_range"] output');
82
+ });
@@ -0,0 +1,204 @@
1
+ /* global Feature Scenario */
2
+
3
+ const assert = require('assert')
4
+
5
+ Feature('object')
6
+
7
+ Scenario('should respect property orders', async (I) => {
8
+ I.amOnPage('object.html')
9
+ assert.equal(await I.grabAttributeFrom('[data-schemapath^="root"] .row:nth-of-type(1) [data-schemapath^="root."]', 'data-schemapath'), 'root.age')
10
+ assert.equal(await I.grabAttributeFrom('[data-schemapath^="root"] .row:nth-of-type(2) [data-schemapath^="root."]', 'data-schemapath'), 'root.name')
11
+ assert.equal(await I.grabAttributeFrom('[data-schemapath^="root"] .row:nth-of-type(3) [data-schemapath^="root."]', 'data-schemapath'), 'root.single')
12
+ assert.equal(await I.grabAttributeFrom('[data-schemapath^="root"] .row:nth-of-type(4) [data-schemapath^="root."]', 'data-schemapath'), 'root.values')
13
+ assert.equal(await I.grabAttributeFrom('[data-schemapath^="root"] .row:nth-of-type(5) [data-schemapath^="root."]', 'data-schemapath'), 'root.zodiac')
14
+ })
15
+
16
+ Scenario('should validate required properties', async (I) => {
17
+ I.amOnPage('object.html')
18
+ I.see('Value must be at least 18.')
19
+ })
20
+
21
+ Scenario('should validate also not required properties', async (I) => {
22
+ I.amOnPage('object.html')
23
+ I.see('Value must be at least 3 characters long.')
24
+ })
25
+
26
+ Scenario('grid-strict rows and columns', (I) => {
27
+ I.amOnPage('grid-strict.html')
28
+ I.seeNumberOfVisibleElements('.row', 13)
29
+ I.seeElement('.col-md-1')
30
+ I.seeElement('.col-md-2')
31
+ I.seeElement('.col-md-3')
32
+ I.seeElement('.col-md-4')
33
+ I.seeElement('.col-md-5')
34
+ I.seeElement('.col-md-6')
35
+ I.seeElement('.col-md-7')
36
+ I.seeElement('.col-md-8')
37
+ I.seeElement('.col-md-9')
38
+ I.seeElement('.col-md-10')
39
+ I.seeElement('.col-md-11')
40
+ I.seeElement('.col-md-12')
41
+ I.seeElement('.col-md-1.offset-md-1')
42
+ I.seeElement('.col-md-1.offset-md-2')
43
+ I.seeElement('.col-md-1.offset-md-3')
44
+ I.seeElement('.col-md-1.offset-md-4')
45
+ I.seeElement('.col-md-1.offset-md-5')
46
+ I.seeElement('.col-md-1.offset-md-6')
47
+ I.seeElement('.col-md-1.offset-md-7')
48
+ I.seeElement('.col-md-1.offset-md-8')
49
+ I.seeElement('.col-md-1.offset-md-9')
50
+ I.seeElement('.col-md-1.offset-md-10')
51
+ I.seeElement('.col-md-1.offset-md-11')
52
+ })
53
+
54
+ Scenario('grid rows and columns', (I) => {
55
+ I.amOnPage('grid.html')
56
+ I.seeNumberOfVisibleElements('.row', 6)
57
+ I.seeNumberOfVisibleElements('.col-md-12', 1)
58
+ I.seeNumberOfVisibleElements('.col-md-6', 3)
59
+ I.seeNumberOfVisibleElements('.col-md-4', 3)
60
+ I.seeNumberOfVisibleElements('.col-md-3', 4)
61
+ I.seeNumberOfVisibleElements('.col-md-2', 6)
62
+ I.seeNumberOfVisibleElements('.col-md-1', 6)
63
+ })
64
+
65
+ Scenario('opt in optional properties @show_opt_in', async (I) => {
66
+ I.amOnPage('object-required-properties.html')
67
+
68
+ // if an editor type "object" is disabled, also the child editors opt-in controls will be disabled.
69
+ I.seeDisabledAttribute('[data-schemapath="root.object.number"] .json-editor-opt-in')
70
+ I.seeDisabledAttribute('[data-schemapath="root.object.boolean"] .json-editor-opt-in')
71
+
72
+ // tests merged from master 17.9.2019
73
+ I.dontSeeCheckedAttribute('[data-schemapath="root.string"] .json-editor-opt-in')
74
+ I.dontSeeDisabledAttribute('[data-schemapath="root.string"] .json-editor-opt-in')
75
+ I.seeDisabledAttribute('[name="root[string]"]')
76
+ I.dontSeeCheckedAttribute('[data-schemapath="root.object.number"] .json-editor-opt-in')
77
+ I.seeDisabledAttribute('[data-schemapath="root.object.number"] .json-editor-opt-in')
78
+ I.seeDisabledAttribute('[name="root[object][number]"]')
79
+ I.dontSeeCheckedAttribute('[data-schemapath="root.object.boolean"] .json-editor-opt-in')
80
+ I.seeDisabledAttribute('[data-schemapath="root.object.boolean"] .json-editor-opt-in')
81
+
82
+ I.click('.get-value')
83
+ assert.equal(await I.grabValueFrom('.value'), '{"number":0,"boolean":false}')
84
+
85
+ // Opening and Closing "Edit JSON" should keep opt-in state.
86
+
87
+ I.click('[data-schemapath="root"] .json-editor-btn-edit')
88
+ I.click('[data-schemapath="root"] .json-editor-btn-edit')
89
+
90
+ I.dontSeeCheckedAttribute('[data-schemapath="root.string"] .json-editor-opt-in')
91
+ I.dontSeeDisabledAttribute('[data-schemapath="root.string"] .json-editor-opt-in')
92
+ I.seeDisabledAttribute('[name="root[string]"]')
93
+ I.dontSeeCheckedAttribute('[data-schemapath="root.object.number"] .json-editor-opt-in')
94
+ I.seeDisabledAttribute('[data-schemapath="root.object.number"] .json-editor-opt-in')
95
+ I.seeDisabledAttribute('[name="root[object][number]"]')
96
+ I.dontSeeCheckedAttribute('[data-schemapath="root.object.boolean"] .json-editor-opt-in')
97
+ I.seeDisabledAttribute('[data-schemapath="root.object.boolean"] .json-editor-opt-in')
98
+ I.seeDisabledAttribute('[name="root[object][boolean]"]')
99
+
100
+ I.click('.get-value')
101
+ assert.equal(await I.grabValueFrom('.value'), '{"number":0,"boolean":false}')
102
+
103
+ // opt-in string property
104
+
105
+ I.click('[data-schemapath="root.string"] .json-editor-opt-in')
106
+ I.click('.get-value')
107
+ assert.equal(await I.grabValueFrom('.value'), '{"string":"","number":0,"boolean":false}')
108
+
109
+ // opt-in array property
110
+
111
+ I.click('[data-schemapath="root.array"] .json-editor-opt-in')
112
+ I.click('.get-value')
113
+ assert.equal(await I.grabValueFrom('.value'), '{"string":"","number":0,"boolean":false,"array":[]}')
114
+
115
+ // opt-in object property
116
+
117
+ I.click('[data-schemapath="root.object"] .json-editor-opt-in')
118
+ I.click('.get-value')
119
+ assert.equal(await I.grabValueFrom('.value'), '{"string":"","number":0,"boolean":false,"array":[],"object":{"string":"","array":[]}}')
120
+
121
+ // if an editor type "object" is enabled, also the child editors opt-in controls will be enabled.
122
+ I.dontSeeDisabledAttribute('[data-schemapath="root.object.number"] .json-editor-opt-in')
123
+ I.dontSeeDisabledAttribute('[data-schemapath="root.object.boolean"] .json-editor-opt-in')
124
+ })
125
+
126
+ Scenario('set value opt in optional properties @show_opt_in', async (I) => {
127
+ I.amOnPage('object-required-properties.html')
128
+
129
+ // all editors visible
130
+ I.waitForElement('[data-schemapath="root.string"]', 5)
131
+ I.waitForElement('[data-schemapath="root.number"]', 5)
132
+ I.waitForElement('[data-schemapath="root.boolean"]', 5)
133
+ I.waitForElement('[data-schemapath="root.array"]', 5)
134
+ I.waitForElement('[data-schemapath="root.object"]', 5)
135
+ I.waitForElement('[data-schemapath="root.object.string"]', 5)
136
+ I.waitForElement('[data-schemapath="root.object.number"]', 5)
137
+ I.waitForElement('[data-schemapath="root.object.boolean"]', 5)
138
+
139
+ // set values
140
+ I.click('.set-value')
141
+ I.click('.get-value')
142
+ assert.equal(await I.grabValueFrom('.value'), '{"string":"test","number":0,"boolean":false,"array":["test"],"object":{"string":"","number":10,"boolean":true,"array":[]}}')
143
+
144
+ // set empty values
145
+ I.click('.set-empty-value')
146
+ I.click('.get-value')
147
+ assert.equal(await I.grabValueFrom('.value'), '{"number":0,"boolean":false}')
148
+
149
+ // all editorsstill visible
150
+ I.waitForElement('[data-schemapath="root.string"]', 5)
151
+ I.waitForElement('[data-schemapath="root.number"]', 5)
152
+ I.waitForElement('[data-schemapath="root.boolean"]', 5)
153
+ I.waitForElement('[data-schemapath="root.array"]', 5)
154
+ I.waitForElement('[data-schemapath="root.object"]', 5)
155
+ I.waitForElement('[data-schemapath="root.object.string"]', 5)
156
+ I.waitForElement('[data-schemapath="root.object.number"]', 5)
157
+ I.waitForElement('[data-schemapath="root.object.boolean"]', 5)
158
+ })
159
+
160
+ Scenario('objects should contain properties defined with the properties keyword unless the property "additionalProperties: true" is specified in the object schema @additional-properties', async (I) => {
161
+ I.amOnPage('object-no-additional-properties.html')
162
+ I.seeElement('[data-schemapath="root.aptrue.name"] input')
163
+ I.seeElement('[data-schemapath="root.aptrue.age"] input')
164
+ I.seeElement('[data-schemapath="root.apfalse.name"] input')
165
+ I.dontSeeElement('[data-schemapath="root.apfalse.age"] input')
166
+ I.click('.get-value')
167
+ assert.equal(await I.grabValueFrom('.value'), '{"aptrue":{"name":"Albert","age":0},"apfalse":{"name":"Albert"}}')
168
+ })
169
+
170
+ Scenario('should have unique ids', (I) => {
171
+ I.amOnPage('object-no-duplicated-id.html')
172
+ I.donSeeDuplicatedIds()
173
+ I.waitForText('i am actually a cat')
174
+ I.waitForText('i am actually a dog')
175
+ I.click('.json-editor-btn-edit_properties')
176
+ I.click('.form-group:nth-child(1) .form-check-input')
177
+ I.waitForText('i am actually a dog')
178
+ I.click('.form-group:nth-child(1) .form-check-input')
179
+ I.click('.form-group:nth-child(2) .form-check-input')
180
+ I.waitForText('i am actually a cat')
181
+ })
182
+
183
+ Scenario('should hide properties with unfulfilled dependencies', (I) => {
184
+ I.amOnPage('object-with-dependencies.html')
185
+ I.seeElement('[data-schemapath="root.enable_option"] input')
186
+ I.dontSeeElement('[data-schemapath="root.make_new"] input')
187
+ I.dontSeeElement('[data-schemapath="root.existing_name"] input')
188
+
189
+ I.click('[data-schemapath="root.enable_option"] input')
190
+ I.seeElement('[data-schemapath="root.enable_option"] input')
191
+ I.seeElement('[data-schemapath="root.make_new"] input')
192
+ I.dontSeeElement('[data-schemapath="root.existing_name"] input')
193
+ })
194
+
195
+ Scenario('should respect multiple dependency values', (I) => {
196
+ I.amOnPage('object-with-dependencies-array.html')
197
+ I.waitForVisible('[data-schemapath="root.answerB"] input', 5)
198
+ I.selectOption('[name="root[answerA]"]', 'C')
199
+ I.waitForInvisible('[data-schemapath="root.answerB"] input', 5)
200
+ I.selectOption('[name="root[answerA]"]', 'B')
201
+ I.waitForVisible('[data-schemapath="root.answerB"] input', 5)
202
+ I.selectOption('[name="root[answerA]"]', 'A')
203
+ I.waitForVisible('[data-schemapath="root.answerB"] input', 5)
204
+ })
@@ -0,0 +1,42 @@
1
+ var assert = require('assert')
2
+
3
+ Feature('option no_default_values')
4
+
5
+ Scenario('should have correct initial value', async (I) => {
6
+ I.amOnPage('option-no_default_values.html')
7
+ I.click('.get-value')
8
+ assert.equal(await I.grabValueFrom('.debug'), JSON.stringify({
9
+ integer: undefined,
10
+ number: undefined,
11
+ string: undefined
12
+ }))
13
+ })
14
+
15
+ Scenario('should have correct values on empty dirty field', async (I) => {
16
+ I.amOnPage('option-no_default_values.html')
17
+ I.click('.get-value')
18
+
19
+ await I.fillField('[name="root[integer]"]', '3')
20
+ await I.fillField('[name="root[number]"]', '3')
21
+ await I.fillField('[name="root[string]"]', 'foo')
22
+ I.click('.force-change')
23
+ I.click('.get-value')
24
+
25
+ assert.equal(await I.grabValueFrom('.debug'), JSON.stringify({
26
+ number: 3.0,
27
+ string: 'foo',
28
+ integer: 3
29
+ }))
30
+
31
+ await I.clearField('[name="root[integer]"]')
32
+ await I.clearField('[name="root[number]"]')
33
+ await I.clearField('[name="root[string]"]')
34
+ I.click('.force-change')
35
+ I.click('.get-value')
36
+
37
+ assert.equal(await I.grabValueFrom('.debug'), JSON.stringify({
38
+ number: undefined,
39
+ string: '',
40
+ integer: undefined
41
+ }))
42
+ })
@@ -0,0 +1,20 @@
1
+ /* global Feature Scenario */
2
+
3
+ var assert = require('assert')
4
+
5
+ Feature('Programmatic changes')
6
+
7
+ Scenario('should have correct initial value', async (I) => {
8
+ I.amOnPage('programmatic-changes.html')
9
+ I.waitForText('READY', 5, '.state')
10
+ I.click('.get-value')
11
+ assert.equal(await I.grabValueFrom('.value'), '{"boolean":false,"boolean_checkbox":false,"string":"","integer":0,"number":0,"array":[],"array_checkbox":[],"array_select":[]}')
12
+ })
13
+
14
+ Scenario('should have correct values after setting them programmatically', async (I) => {
15
+ I.amOnPage('programmatic-changes.html')
16
+ I.waitForText('READY', 5, '.state')
17
+ I.click('.set-values')
18
+ I.click('.get-value')
19
+ assert.equal(await I.grabValueFrom('.value'), '{"boolean":true,"boolean_checkbox":true,"string":"hello","integer":5,"number":5.5,"array":[1,2,3],"array_checkbox":["value1","value2"],"array_select":[1,2,3]}')
20
+ })
@@ -0,0 +1,10 @@
1
+ /* global Feature Scenario */
2
+
3
+ Feature('radio')
4
+
5
+ Scenario('should be disabled if "readonly" is specified', async (I) => {
6
+ I.amOnPage('read-only.html')
7
+
8
+ I.seeDisabledAttribute('[id="root[radio][0]"]')
9
+ I.seeDisabledAttribute('[id="root[radio][1]"]')
10
+ })