Skip to content

Commit

Permalink
feat: Setup workspace workflow file. (#1145)
Browse files Browse the repository at this point in the history
* feat: enable workspace plugin setup

Signed-off-by: yubonluo <[email protected]>

* feat: fix some details

Signed-off-by: yubonluo <[email protected]>

* feat: fix file filters

Signed-off-by: yubonluo <[email protected]>

---------

Signed-off-by: yubonluo <[email protected]>
  • Loading branch information
yubonluo authored Mar 14, 2024
1 parent 855186a commit 736a788
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/workspace-release-e2e-workflow.yml
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/**/workspace-plugin/**'
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_WORKSPACE_ENABLED=true yarn cypress:run-with-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/workspace-plugin/*'
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_WORKSPACE_ENABLED=true yarn cypress:run-without-security --browser chromium --spec 'cypress/integration/core-opensearch-dashboards/opensearch-dashboards/workspace-plugin/*'
osd-serve-args: --workspace.enabled=true --savedObjects.permission.enabled=false
security-enabled: false
3 changes: 2 additions & 1 deletion cypress.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"DATASOURCE_MANAGEMENT_ENABLED": false,
"ML_COMMONS_DASHBOARDS_ENABLED": true,
"WAIT_FOR_LOADER_BUFFER_MS": 0,
"DASHBOARDS_ASSISTANT_ENABLED": false
"DASHBOARDS_ASSISTANT_ENABLED": false,
"WORKSPACE_ENABLED": false
}
}
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('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);
});
});
});
});
}

0 comments on commit 736a788

Please sign in to comment.