-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/2.0.8' into light-refactor-of-visual-tests
- Loading branch information
Showing
37 changed files
with
898 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: "e2e-couchdb" | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: | ||
- labeled | ||
- opened | ||
env: | ||
OPENMCT_DATABASE_NAME: openmct | ||
COUCH_ADMIN_USER: admin | ||
COUCH_ADMIN_PASSWORD: password | ||
COUCH_BASE_LOCAL: http://localhost:5984 | ||
COUCH_NODE_NAME: nonode@nohost | ||
jobs: | ||
e2e-couchdb: | ||
if: ${{ github.event.label.name == 'pr:e2e:couchdb' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run : docker-compose up -d -f src/plugins/persistence/couch/couchdb-compose.yaml | ||
- run : sh src/plugins/persistence/couch/setup-couchdb.sh | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
- run: npx [email protected] install | ||
- run: npm install | ||
- run: sh src/plugins/persistence/couch/replace-localstorage-with-couchdb-indexhtml.sh | ||
- run: npm run test:e2e:couchdb | ||
- run: ls -latr | ||
- name: Archive test results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: test-results | ||
- name: Archive html test results | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: html-test-results |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
/***************************************************************************** | ||
* Open MCT, Copyright (c) 2014-2022, United States Government | ||
* as represented by the Administrator of the National Aeronautics and Space | ||
* Administration. All rights reserved. | ||
* | ||
* Open MCT is licensed under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
* | ||
* Open MCT includes source code licensed under additional open source | ||
* licenses. See the Open Source Licenses file (LICENSES.md) included with | ||
* this source code distribution or the Licensing information page available | ||
* at runtime from the About dialog for additional information. | ||
*****************************************************************************/ | ||
|
||
/* | ||
* This test suite is meant to be executed against a couchdb container. More doc to come | ||
* | ||
*/ | ||
|
||
const { test, expect } = require('../../baseFixtures'); | ||
|
||
test.describe("CouchDB Status Indicator @couchdb", () => { | ||
test.use({ failOnConsoleError: false }); | ||
//TODO BeforeAll Verify CouchDB Connectivity with APIContext | ||
test('Shows green if connected', async ({ page }) => { | ||
await page.route('**/openmct/mine', route => { | ||
route.fulfill({ | ||
status: 200, | ||
contentType: 'application/json', | ||
body: JSON.stringify({}) | ||
}); | ||
}); | ||
|
||
//Go to baseURL | ||
await page.goto('./#/browse/mine?hideTree=true&hideInspector=true', { waitUntil: 'networkidle' }); | ||
await expect(page.locator('div:has-text("CouchDB is connected")').nth(3)).toBeVisible(); | ||
}); | ||
test('Shows red if not connected', async ({ page }) => { | ||
await page.route('**/openmct/**', route => { | ||
route.fulfill({ | ||
status: 503, | ||
contentType: 'application/json', | ||
body: JSON.stringify({}) | ||
}); | ||
}); | ||
|
||
//Go to baseURL | ||
await page.goto('./#/browse/mine?hideTree=true&hideInspector=true', { waitUntil: 'networkidle' }); | ||
await expect(page.locator('div:has-text("CouchDB is offline")').nth(3)).toBeVisible(); | ||
}); | ||
test('Shows unknown if it receives an unexpected response code', async ({ page }) => { | ||
await page.route('**/openmct/mine', route => { | ||
route.fulfill({ | ||
status: 418, | ||
contentType: 'application/json', | ||
body: JSON.stringify({}) | ||
}); | ||
}); | ||
|
||
//Go to baseURL | ||
await page.goto('./#/browse/mine?hideTree=true&hideInspector=true', { waitUntil: 'networkidle' }); | ||
await expect(page.locator('div:has-text("CouchDB connectivity unknown")').nth(3)).toBeVisible(); | ||
}); | ||
}); | ||
|
||
test.describe("CouchDB initialization @couchdb", () => { | ||
test.use({ failOnConsoleError: false }); | ||
test("'My Items' folder is created if it doesn't exist", async ({ page }) => { | ||
// Store any relevant PUT requests that happen on the page | ||
const createMineFolderRequests = []; | ||
page.on('request', req => { | ||
// eslint-disable-next-line playwright/no-conditional-in-test | ||
if (req.method() === 'PUT' && req.url().endsWith('openmct/mine')) { | ||
createMineFolderRequests.push(req); | ||
} | ||
}); | ||
|
||
// Override the first request to GET openmct/mine to return a 404 | ||
await page.route('**/openmct/mine', route => { | ||
route.fulfill({ | ||
status: 404, | ||
contentType: 'application/json', | ||
body: JSON.stringify({}) | ||
}); | ||
}, { times: 1 }); | ||
|
||
// Go to baseURL | ||
await page.goto('./', { waitUntil: 'networkidle' }); | ||
|
||
// Verify that error banner is displayed | ||
const bannerMessage = await page.locator('.c-message-banner__message').innerText(); | ||
expect(bannerMessage).toEqual('Failed to retrieve object mine'); | ||
|
||
// Verify that a PUT request to create "My Items" folder was made | ||
expect.poll(() => createMineFolderRequests.length, { | ||
message: 'Verify that PUT request to create "mine" folder was made', | ||
timeout: 1000 | ||
}).toBeGreaterThanOrEqual(1); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.