From a9f86520bb34d3ecf300a78c8905eb22e4172503 Mon Sep 17 00:00:00 2001
From: Jure Ursic <jure@colab.coop>
Date: Tue, 14 Jul 2020 16:11:54 +0200
Subject: [PATCH] feature: Leave project test flow

---
 .gitlab-ci.yml                             |  1 +
 cypress/integration/leave-project.spec.js  | 50 ++++++++++++++++++++++
 cypress/integration/retire-project.spec.js |  2 +-
 3 files changed, 52 insertions(+), 1 deletion(-)
 create mode 100644 cypress/integration/leave-project.spec.js

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a660e45..a17e7c9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,6 +23,7 @@ build:
   stage: build
   before_script:
     - npm ci --cache .npm --prefer-offline --only=production
+    - npm i cypress-localstorage-commands
   script:
     - cp config.sample.json config.json
     - npm run build
diff --git a/cypress/integration/leave-project.spec.js b/cypress/integration/leave-project.spec.js
new file mode 100644
index 0000000..0ceef4c
--- /dev/null
+++ b/cypress/integration/leave-project.spec.js
@@ -0,0 +1,50 @@
+/// <reference types="Cypress" />
+/* globals cy, expect */
+
+context('Leave Project Browser Testing', () => {
+  let tableQuery = [
+    'solid-display.table-body',
+    'solid-display:last-child',
+    'hubl-admin-project-leave-button',
+    'solid-delete'
+  ],
+  tableListQuery = [
+    'solid-display[nested-field="projects"]',
+    'div >',
+    'solid-display'
+  ];
+  before(() => {
+    cy.clearLocalStorageSnapshot();
+    cy.clearLocalStorage({ domain: null });
+    cy.clearCookies({ domain: null });
+  });
+  beforeEach(() => cy.restoreLocalStorage());
+  afterEach(() => cy.saveLocalStorage());
+  it('should visit user login screend', () => cy.userLogin());
+  describe('Project Leaving process', () => {
+    it('should login', () => cy.login());
+    it('should visit the projects list screen', () => cy.naviagte('/admin/admin-projects'));
+    it('should click the last project leave button', () => {
+      cy.get(tableListQuery.join(' ')).its('length').as('projectsLength');
+      cy.get(tableQuery.join(' ')).click();
+    });
+    it('should check', () => {
+      cy.get(tableListQuery.join(' ')).its('length').should(length => {
+        expect(length).to.eq(this.projectsLength - 1);
+      });
+    });
+    /*it('should click button to retire the project', () => {
+      cy.scrollTo('bottom');
+      cy.get('solid-delete[data-label="Retirer"] button').click();
+    });
+    it('should stay on project edit screen', () => {
+      cy.get(menuQuery.join(' '))
+        .invoke('attr', 'data-src')
+        .then(url => cy.encodeUrl(url).then(id  => {
+          cy.location().should((loc) => {
+            expect(loc.pathname).to.eq('/project/@' + id + '/project-information/project-edit');
+          });
+        }));
+    });*/
+  });
+});
diff --git a/cypress/integration/retire-project.spec.js b/cypress/integration/retire-project.spec.js
index e319d83..71d23b6 100644
--- a/cypress/integration/retire-project.spec.js
+++ b/cypress/integration/retire-project.spec.js
@@ -17,7 +17,7 @@ context('Retire Project Browser Testing', () => {
   it('should visit user login screend', () => cy.userLogin());
   describe('Project Retirement process', () => {
     it('should login', () => cy.login());
-    it('should visit the project creation screen', () => cy.naviagte('/admin/admin-projects'));
+    it('should visit the projects list screen', () => cy.naviagte('/admin/admin-projects'));
     it('should visit the last project edit screen', () => {
       cy.get(menuQuery.join(' '))
         .invoke('attr', 'data-src')