graphdb-workbench-tests 3.3.1 → 3.4.0-dynamic-guides-test

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 (70) hide show
  1. package/cypress-flaky.config.js +2 -0
  2. package/cypress-legacy.config.js +2 -2
  3. package/cypress-security.config.js +3 -14
  4. package/e2e-flaky/import/import-server-files-operations.spec.js +1 -1
  5. package/e2e-flaky/import/import-user-data-batch-operations.spec.js +1 -1
  6. package/e2e-flaky/setup/sparql-template-create.js +3 -18
  7. package/e2e-flaky/sparql-editor/actions/execute-update-query.spec.js +2 -12
  8. package/e2e-flaky/sparql-editor/actions/share-query.spec.js +1 -7
  9. package/e2e-flaky/sparql-editor/yasr/table-plugin.spec.js +1 -6
  10. package/e2e-legacy/explore/visual-graph/visual.graph.spec.js +2 -7
  11. package/e2e-legacy/graphql/graphql-theme.spec.js +73 -0
  12. package/e2e-legacy/guides/execute-sparql-query/execute-sparql-query-guide.spec.js +92 -0
  13. package/e2e-legacy/guides/import-rdf-file/confirm-duplicate-rdf-file.spec.js +63 -0
  14. package/e2e-legacy/guides/import-rdf-file/import-rdf-file.spec.js +105 -0
  15. package/e2e-legacy/guides/main-menu/main-menu-guide.spec.js +302 -0
  16. package/e2e-legacy/guides/rdf-rank/rdf-rank-guide.spec.js +42 -0
  17. package/e2e-legacy/guides/table-graph-explore/table-graph-explore-guide.spec.js +167 -0
  18. package/e2e-legacy/guides/ttyg/conversation/ttyg-conversation-guide.spec.js +6 -2
  19. package/e2e-legacy/guides/ttyg/edit-agent/edit-ttyg-agent-guide.spec.js +87 -0
  20. package/e2e-legacy/guides/visual-graph/visual-graph-guide.spec.js +166 -0
  21. package/e2e-legacy/guides/welcome/welcome-guide.spec.js +36 -0
  22. package/e2e-legacy/help/guides/movies-interactive-guide.spec.js +47 -49
  23. package/e2e-legacy/import/import-server-files.spec.js +3 -1
  24. package/e2e-legacy/repository/repositories.spec.js +5 -2
  25. package/e2e-legacy/repository/url-with-repository-id-parameter.spec.js +26 -0
  26. package/e2e-legacy/resource/resource.spec.js +1 -6
  27. package/e2e-legacy/setup/aclmanagement/create-rule.spec.js +3 -0
  28. package/e2e-legacy/setup/connectors-lucene.spec.js +24 -8
  29. package/e2e-legacy/setup/users-and-access/user-and-access.spec.js +36 -0
  30. package/e2e-legacy/sparql-editor/actions/expand-results-over-sameas.spec.js +1 -1
  31. package/e2e-legacy/sparql-editor/actions/show-saved-queries.spec.js +1 -6
  32. package/e2e-legacy/sparql-editor/yasgui-tabs.spec.js +2 -12
  33. package/e2e-legacy/sparql-editor/yasr/pagination.spec.js +5 -18
  34. package/e2e-legacy/sparql-editor/yasr/table-plugin.spec.js +1 -6
  35. package/e2e-legacy/sparql-editor/yasr/toolbar/visual-graph-button.spec.js +1 -6
  36. package/e2e-legacy/ttyg/chat-list.spec.js +2 -12
  37. package/e2e-legacy/ttyg/create-agent.spec.js +8 -48
  38. package/e2e-legacy/ttyg/edit-agent.spec.js +2 -12
  39. package/e2e-security/repository/url-with-repository-id-parameter.spec.js +57 -0
  40. package/e2e-security/setup/users-and-access/turn-on-security-and-password-change.spec.js +4 -5
  41. package/fixtures/guides/execute-sparql-query/execute-sparql-query-guide.json +54 -0
  42. package/fixtures/guides/import-rdf-file/confirm-duplicate-rdf-file-guide.json +30 -0
  43. package/fixtures/guides/import-rdf-file/import-rdf-file-guide.json +21 -0
  44. package/fixtures/guides/main-menu/main-menu-guide.json +98 -0
  45. package/fixtures/guides/rdf-rank/rdf-rank-guide.json +18 -0
  46. package/fixtures/guides/table-graph-explore/table-graph-explore-guide.json +51 -0
  47. package/fixtures/guides/table-graph-explore/table-graph-explore-without-substeps-guide.json +25 -0
  48. package/fixtures/guides/ttyg/edit-ttyg-agent/edit-ttyg-agent-guide.json +22 -0
  49. package/fixtures/guides/visual-graph/visual-graph-guide.json +85 -0
  50. package/fixtures/guides/welcome/welcome-guide.json +18 -0
  51. package/npm-shrinkwrap.json +317 -263
  52. package/package.json +1 -1
  53. package/steps/base-steps.js +4 -0
  54. package/steps/error-page-steps.js +9 -0
  55. package/steps/graphql/playground-editor-steps.js +46 -0
  56. package/steps/guides/guide-dialog-steps.js +4 -0
  57. package/steps/import/import-resource-message-dialog.js +1 -1
  58. package/steps/login-steps.js +4 -0
  59. package/steps/main-menu-steps.js +12 -0
  60. package/steps/repository-steps.js +2 -2
  61. package/steps/setup/acl-management-steps.js +4 -0
  62. package/steps/setup/user-and-access-steps.js +14 -6
  63. package/steps/sparql-steps.js +13 -1
  64. package/steps/visual-graph-steps.js +17 -1
  65. package/steps/yasgui/yasqe-steps.js +29 -4
  66. package/steps/yasgui/yasr-steps.js +4 -0
  67. package/stubs/guides/guides-stubs.js +41 -1
  68. package/stubs/security-stubs.js +4 -0
  69. package/stubs/ttyg/ttyg-stubs.js +2 -4
  70. package/support/e2e-security.js +9 -0
@@ -0,0 +1,85 @@
1
+ [
2
+ {
3
+ "guideName": {
4
+ "en": "Visual Graph"
5
+ },
6
+ "guideDescription": {
7
+ "en": "Test Visual Graph"
8
+ },
9
+ "steps": [
10
+ {
11
+ "guideBlockName": "visual-graph",
12
+ "options": {
13
+ "easyGraphInputText": "wine",
14
+ "iri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine",
15
+ "iriLabel": "wine"
16
+ }
17
+ },
18
+ {
19
+ "guideBlockName": "visual-graph-node-focus",
20
+ "options": {
21
+ "iri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine",
22
+ "iriLabel": "wine"
23
+ }
24
+ },
25
+ {
26
+ "guideBlockName": "visual-graph-link-focus",
27
+ "options": {
28
+ "fromIri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#Wine",
29
+ "fromIriLabel": "Wine",
30
+ "toIri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#PotableLiquid",
31
+ "toIriLabel": "Potable Liquid",
32
+ "iriLabel": "type",
33
+ "extraContent": {
34
+ "en": "This tells us that one of the RDF types for <b>{{fromIriLabel}}</b> is <b>{{toIriLabel}}</b>."
35
+ }
36
+ }
37
+ },
38
+ {
39
+ "guideBlockName": "visual-graph-properties",
40
+ "options": {
41
+ "iri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine",
42
+ "iriLabel": "Wine",
43
+ "focusProperties": [
44
+ {
45
+ "property": "types",
46
+ "message": {
47
+ "en": "We can see that <b>{{iriLabel}}</b> has a single type, <b>owl:Class</b>."
48
+ }
49
+ },
50
+ {
51
+ "property": "rdfs:label",
52
+ "message": {
53
+ "en": "This shows the label of <b>{{iriLabel}}</b>."
54
+ }
55
+ },
56
+ {
57
+ "property": "rdfs:label",
58
+ "skipGenericMessage": true,
59
+ "message": {
60
+ "en": "This shows the label of <b>{{iriLabel}}</b>."
61
+ }
62
+ }
63
+ ]
64
+ }
65
+ },
66
+ {
67
+ "guideBlockName": "visual-graph-expand",
68
+ "options": {
69
+ "iri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#WhitehallLanePrimavera",
70
+ "iriLabel": "Whitehall Lane Primavera"
71
+ }
72
+ },
73
+ {
74
+ "guideBlockName": "visual-graph-node-focus",
75
+ "options": {
76
+ "iri": "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#NapaRegion",
77
+ "iriLabel": "Napa Region"
78
+ }
79
+ },
80
+ {
81
+ "guideBlockName": "guide-end"
82
+ }
83
+ ]
84
+ }
85
+ ]
@@ -0,0 +1,18 @@
1
+ [
2
+ {
3
+ "guideName": {
4
+ "en": "Welcome"
5
+ },
6
+ "guideDescription": {
7
+ "en": "Test welcome guide"
8
+ },
9
+ "steps": [
10
+ {
11
+ "guideBlockName": "welcome"
12
+ },
13
+ {
14
+ "guideBlockName": "guide-end"
15
+ }
16
+ ]
17
+ }
18
+ ]