graphdb-workbench-tests 2.0.3-RC1 → 2.1.0-TEST-RELEASE-FIX1

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.
@@ -537,6 +537,8 @@
537
537
  "menu.sparql.label": "SPARQL",
538
538
  "menu.monitor.label": "Monitor",
539
539
  "menu.queries.and.updates.label": "Queries and Updates",
540
+ "menu.fts.label": "Enable full-text search",
541
+ "menu.ftsLanguages.label": "Languages for full-text search",
540
542
  "menu.resources.label": "Resources",
541
543
  "menu.setup.label": "Setup",
542
544
  "menu.repositories.label": "Repositories",
@@ -963,6 +965,8 @@
963
965
  "repoTooltips.throwQueryEvaluationExceptionOnTimeout": "Repository throws QueryEvaluationException when the duration of a query execution exceeds the timeout parameter.",
964
966
  "repoTooltips.queryLimitResults": "Sets the maximum number of results returned from a query after which the evaluation of a query will be terminated; values less than or equal to zero mean no limit.",
965
967
  "repoTooltips.nonInterpretablePredicates": "Semicolon-delimited list of predicates (full URIs) that GraphDB will not try to process with the registered GraphDB plugins.",
968
+ "repoTooltips.fts": "Enable full-text search.",
969
+ "repoTooltips.ftsLanguages": "White space-delimited list of languages that should have specific index with appropriate analyzer for full-text search.",
966
970
  "repoTooltips.ontop.driverType": "Determines the type of SQL database to connect to.",
967
971
  "repoTooltips.ontop.propertiesFile": "Describes the JDBC configuration such as hostname and database name to connect to.",
968
972
  "repoTooltips.ontop.hostName": "The JDBC hostname to connect to.",
@@ -76,6 +76,16 @@
76
76
  "name": "entityIdSize",
77
77
  "value": "32"
78
78
  },
79
+ "fts": {
80
+ "label": "Enable full-text search",
81
+ "name": "fts",
82
+ "value": "true"
83
+ },
84
+ "ftsLanguages": {
85
+ "label": "Enter language for full-text search",
86
+ "name": "ftsLanguages",
87
+ "value": ""
88
+ },
79
89
  "throwQueryEvaluationExceptionOnTimeout": {
80
90
  "label": "Throw exception on query time-out",
81
91
  "name": "throwQueryEvaluationExceptionOnTimeout",
@@ -37,7 +37,7 @@ describe('Home screen language validation', () => {
37
37
 
38
38
  // The text in the labels should change
39
39
  HomeSteps.getViewResourceAsLabel().should('have.text', 'Voir la ressource');
40
- HomeSteps.getActiveRepoAsLabel().should('have.text', 'Répertoire actif');
40
+ HomeSteps.getActiveRepoAsLabel().should('have.text', 'Dépôt actif');
41
41
  HomeSteps.getSavedSparqlQueriesAsLabel().should('have.text', 'Requêtes SPARQL sauvegardées');
42
42
  HomeSteps.getLicenseAsLabel().should('have.text', 'Licence');
43
43
  });
@@ -215,6 +215,7 @@ describe('Repositories', () => {
215
215
  getRepositoryRulesetMenu().should('have.value', '4');
216
216
  getRepositoryDisableSameAsCheckbox().should('not.be.checked');
217
217
  getRepositoryContextIndexCheckbox().should('be.checked');
218
+ getRepositoryFtsCheckbox().should('be.checked');
218
219
  });
219
220
 
220
221
  it('should allow to switch between repositories', () => {
@@ -310,6 +311,7 @@ describe('Repositories', () => {
310
311
 
311
312
  typeRepositoryTitle(newTitle);
312
313
  getRepositoryContextIndexCheckbox().check();
314
+ getRepositoryFtsCheckbox().check();
313
315
 
314
316
  getSaveRepositoryButton()
315
317
  .click()
@@ -326,6 +328,7 @@ describe('Repositories', () => {
326
328
 
327
329
  getRepositoryTitleField().should('have.value', newTitle);
328
330
  getRepositoryContextIndexCheckbox().should('be.checked');
331
+ getRepositoryFtsCheckbox().should('be.checked');
329
332
  });
330
333
 
331
334
  it('should allow to delete existing repository', () => {
@@ -837,6 +840,10 @@ describe('Repositories', () => {
837
840
  return getRepositoryCreateForm().find('#enableContextIndex');
838
841
  }
839
842
 
843
+ function getRepositoryFtsCheckbox() {
844
+ return getRepositoryCreateForm().find('#fts');
845
+ }
846
+
840
847
  function getSaveRepositoryButton() {
841
848
  return cy.get('#addSaveRepository');
842
849
  }
@@ -145,6 +145,11 @@ describe('Main menu tests', function () {
145
145
  visible: false,
146
146
  externalRedirect: 'https://graphdb.ontotext.com/'
147
147
  },
148
+ {
149
+ name: 'Interactive guides',
150
+ visible: false,
151
+ redirect: '/guides'
152
+ },
148
153
  {
149
154
  name: 'System information',
150
155
  visible: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphdb-workbench-tests",
3
- "version": "2.0.3-RC1",
3
+ "version": "2.1.0-TEST-RELEASE-FIX1",
4
4
  "description": "Cypress tests for GraphDB workbench",
5
5
  "scripts": {
6
6
  "start": "cypress open",