-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: yubonluo <[email protected]>
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
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,34 @@ | ||
name: Workspace Release tests workflow in Bundled OpenSearch Dashboards | ||
on: | ||
pull_request: | ||
branches: ['**'] | ||
|
||
jobs: | ||
changes: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tests: ${{ steps.filter.outputs.tests }} | ||
steps: | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: | | ||
tests: | ||
- 'cypress/**/dashboards-workspace/**' | ||
tests-with-security: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.tests == 'true' }} | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: dashboards workspace | ||
test-command: env CYPRESS_DASHBOARDS_WORKSPACE_ENABLED=true yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/dashboards-workspace/*' | ||
osd-serve-args: --workspace.enabled=true --savedObjects.permission.enabled=true | ||
tests-without-security: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.tests == 'true' }} | ||
uses: ./.github/workflows/release-e2e-workflow-template.yml | ||
with: | ||
test-name: dashboards workspace | ||
test-command: env CYPRESS_DASHBOARDS_WORKSPACE_ENABLED=true yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/plugins/dashboards-workspace/*' | ||
osd-serve-args: --workspace.enabled=true --savedObjects.permission.enabled=true | ||
security-enabled: false |
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
32 changes: 32 additions & 0 deletions
32
cypress/integration/plugins/dashboards-workspace/workspace_create.spec.js
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,32 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { BASE_PATH } from '../../../utils/constants'; | ||
|
||
if (Cypress.env('DASHBOARDS_WORKSPACE_ENABLED')) { | ||
describe('Workspace CRUD APIs', () => { | ||
describe('Create a workspace', () => { | ||
it('should successfully create a worksapce', () => { | ||
const body = { | ||
attributes: { | ||
name: 'test_workspace', | ||
description: 'test_workspace_description', | ||
}, | ||
}; | ||
cy.request({ | ||
method: 'POST', | ||
url: `${BASE_PATH}/api/workspaces`, | ||
headers: { | ||
'osd-xsrf': true, | ||
}, | ||
body: body, | ||
}).as('createWorkspace'); | ||
cy.get('@createWorkspace').should((res) => { | ||
expect(res.body.success).to.eql(true); | ||
}); | ||
}); | ||
}); | ||
}); | ||
} |