From 2e1b1001e109cadbe3d26fe8ed1a12ff8f8a21aa Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Tue, 26 Jan 2021 21:06:54 -0300 Subject: [PATCH] 17266: Exposes the bug with an integration test. When the user typed a valid property value and hit , the literal value's label is saved on the backend instead of its vocabulary ID. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- cypress/integration/collection-panel.spec.js | 33 ++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/cypress/integration/collection-panel.spec.js b/cypress/integration/collection-panel.spec.js index 0669b313..3e241ceb 100644 --- a/cypress/integration/collection-panel.spec.js +++ b/cypress/integration/collection-panel.spec.js @@ -28,6 +28,39 @@ describe('Collection panel tests', function() { cy.clearLocalStorage(); }); + it('uses the property editor with vocabulary terms', function() { + cy.createCollection(adminUser.token, { + name: `Test collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"}) + .as('testCollection').then(function() { + cy.loginAs(activeUser); + cy.doSearch(`${this.testCollection.uuid}`); + + // Key: Color (IDTAGCOLORS) - Value: Magenta (IDVALCOLORS3) + cy.get('[data-cy=collection-properties-form]').within(() => { + cy.get('[data-cy=property-field-key]').within(() => { + cy.get('input').type('Color'); + }); + cy.get('[data-cy=property-field-value]').within(() => { + cy.get('input').type('Magenta'); + }); + cy.root().submit(); + }); + // Confirm proper vocabulary labels are displayed on the UI. + cy.get('[data-cy=collection-properties-panel]') + .should('contain', 'Color') + .and('contain', 'Magenta'); + // Confirm proper vocabulary IDs were saved on the backend. + cy.doRequest('GET', `/arvados/v1/collections/${this.testCollection.uuid}`) + .its('body').as('collection') + .then(function() { + expect(this.collection.properties).to.deep.equal( + {IDTAGCOLORS: 'IDVALCOLORS3'}); + }); + }); + }); + it('shows collection by URL', function() { cy.loginAs(activeUser); [true, false].map(function(isWritable) { -- 2.39.5