graphdb-workbench-tests 2.6.2-TR3 → 2.6.2

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.
@@ -39,7 +39,8 @@
39
39
  "sending_snapshot": "Sending a snapshot",
40
40
  "sending_snapshot_with_affected_node": "Sending a snapshot to node {{node}}",
41
41
  "receiving_snapshot": "Receiving a snapshot",
42
- "receiving_snapshot_with_affected_node": "Receiving a snapshot from node {{node}}"
42
+ "receiving_snapshot_with_affected_node": "Receiving a snapshot from node {{node}}",
43
+ "recovery_operation_failure_warning_with_affected_node": "Node unable to recover. Action required. Insufficient disk space to create snapshot on nodes '{{node}}'"
43
44
  }
44
45
  },
45
46
  "cluster_configuration": {
@@ -154,7 +154,7 @@ describe('Cluster management', () => {
154
154
  // The first, with corresponding for "waiting-for-snapshot" status message without affected nodes,
155
155
  ClusterViewSteps.getNodeInfoText('pc-desktop:7200').should('have.text', 'Waiting for snapshot');
156
156
  // The second, with corresponding for "waiting-for-snapshot" status message followed with affected nodes,
157
- ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Waiting for snapshot from node http://pc-desktop:7200');
157
+ ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Waiting for snapshot from node http://pc...');
158
158
  // The third, without message,
159
159
  ClusterViewSteps.getNodeInfoText('pc-desktop:7202').should('have.text', '');
160
160
  });
@@ -176,7 +176,7 @@ describe('Cluster management', () => {
176
176
  // The first, with corresponding for "building-snapshot" status message without affected nodes,
177
177
  ClusterViewSteps.getNodeInfoText('pc-desktop:7200').should('have.text', 'Building a snapshot');
178
178
  // The second, with corresponding for "building-snapshot" status message followed with affected nodes,
179
- ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Building a snapshot for http://pc-desktop:7200, http://pc-desktop:7204');
179
+ ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Building a snapshot for http://pc-deskto...');
180
180
  // The third, without message,
181
181
  ClusterViewSteps.getNodeInfoText('pc-desktop:7202').should('have.text', '');
182
182
  });
@@ -198,7 +198,7 @@ describe('Cluster management', () => {
198
198
  // The first, with corresponding for "sending-snapshot" status message without affected nodes,
199
199
  ClusterViewSteps.getNodeInfoText('pc-desktop:7200').should('have.text', 'Sending a snapshot');
200
200
  // The second, with corresponding for "sending-snapshot" status message followed with affected nodes,
201
- ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Sending a snapshot to node http://pc-desktop:7200');
201
+ ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Sending a snapshot to node http://pc-des...');
202
202
  // The third, without message,
203
203
  ClusterViewSteps.getNodeInfoText('pc-desktop:7202').should('have.text', '');
204
204
  });
@@ -220,7 +220,7 @@ describe('Cluster management', () => {
220
220
  // The first, with corresponding for "receiving-snapshot" status message without affected nodes,
221
221
  ClusterViewSteps.getNodeInfoText('pc-desktop:7200').should('have.text', 'Receiving a snapshot');
222
222
  // The second, with corresponding for "receiving-snapshot" status message followed with affected nodes,
223
- ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Receiving a snapshot from node http://pc-desktop:7200');
223
+ ClusterViewSteps.getNodeInfoText('pc-desktop:7201').should('have.text', 'Receiving a snapshot from node http://pc...');
224
224
  // The third, without message,
225
225
  ClusterViewSteps.getNodeInfoText('pc-desktop:7202').should('have.text', '');
226
226
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphdb-workbench-tests",
3
- "version": "2.6.2-TR3",
3
+ "version": "2.6.2",
4
4
  "description": "Cypress tests for GraphDB workbench",
5
5
  "scripts": {
6
6
  "start": "cypress open",
@@ -9,6 +9,6 @@ export class ClusterViewSteps {
9
9
  }
10
10
 
11
11
  static getNodeInfoText(host) {
12
- return ClusterViewSteps.getNode(host).find('.node-info-text');
12
+ return ClusterViewSteps.getNode(host).find('.node-info-fo');
13
13
  }
14
14
  }