-
Notifications
You must be signed in to change notification settings - Fork 946
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4205ccb
commit 828ef26
Showing
8 changed files
with
448 additions
and
11 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
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
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
200 changes: 200 additions & 0 deletions
200
.../opencti-graphql/tests/02-integration/02-resolvers/container-organization-sharing-test.ts
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,200 @@ | ||
import { describe, expect, it } from 'vitest'; | ||
import gql from 'graphql-tag'; | ||
import { | ||
ADMIN_API_TOKEN, | ||
ADMIN_USER, | ||
adminQuery, | ||
API_URI, | ||
FIVE_MINUTES, | ||
getOrganizationIdByName, | ||
PLATFORM_ORGANIZATION, | ||
PYTHON_PATH, | ||
TEST_ORGANIZATION, | ||
testContext, | ||
USER_EDITOR, | ||
} from '../../utils/testQuery'; | ||
import { adminQueryWithSuccess, queryAsUserWithSuccess } from '../../utils/testQueryHelper'; | ||
import { findById } from '../../../src/domain/report'; | ||
import { execChildPython } from '../../../src/python/pythonBridge'; | ||
import { wait } from '../../../src/database/utils'; | ||
|
||
const READ_QUERY = gql` | ||
query caseIncident($id: String!) { | ||
caseIncident(id: $id) { | ||
id | ||
standard_id | ||
name | ||
authorized_members { | ||
id | ||
access_right | ||
} | ||
currentUserAccessRight | ||
} | ||
} | ||
`; | ||
|
||
const DELETE_QUERY = gql` | ||
mutation CaseIncidentDelete($id: ID!) { | ||
caseIncidentDelete(id: $id) | ||
} | ||
`; | ||
|
||
const PLATFORM_ORGANIZATION_QUERY = gql` | ||
mutation PoliciesFieldPatchMutation($id: ID!, $input: [EditInput]!) { | ||
settingsEdit(id: $id) { | ||
fieldPatch(input: $input) { | ||
platform_organization { | ||
id | ||
name | ||
} | ||
enterprise_edition | ||
id | ||
} | ||
} | ||
} | ||
`; | ||
|
||
const ORGANIZATION_SHARING_QUERY = gql` | ||
mutation StixCoreObjectSharingGroupAddMutation( | ||
$id: ID! | ||
$organizationId: ID! | ||
) { | ||
stixCoreObjectEdit(id: $id) { | ||
restrictionOrganizationAdd(organizationId: $organizationId) { | ||
id | ||
objectOrganization { | ||
id | ||
name | ||
} | ||
} | ||
} | ||
} | ||
`; | ||
|
||
const importOpts: string[] = [API_URI, ADMIN_API_TOKEN, './tests/data/DATA-TEST-STIX2_v2.json']; | ||
|
||
describe('Database provision', () => { | ||
it('Should import creation succeed', async () => { | ||
// Inject data | ||
const execution = await execChildPython(testContext, ADMIN_USER, PYTHON_PATH, 'local_importer.py', importOpts); | ||
expect(execution).not.toBeNull(); | ||
expect(execution.status).toEqual('success'); | ||
}, FIVE_MINUTES); | ||
// Python lib is fixed but we need to wait for a new release | ||
it('Should import update succeed', async () => { | ||
const execution = await execChildPython(testContext, ADMIN_USER, PYTHON_PATH, 'local_importer.py', importOpts); | ||
expect(execution).not.toBeNull(); | ||
expect(execution.status).toEqual('success'); | ||
}, FIVE_MINUTES); | ||
}); | ||
|
||
describe('Organization sharing standard behavior for container', () => { | ||
let reportInternalId: string; | ||
let organizationId: string; | ||
let settingsInternalId: string; | ||
let platformOrganizationId: string; | ||
it('should load Report', async () => { | ||
const report = await findById(testContext, ADMIN_USER, 'report--57162a65-2a58-560b-9a65-47c3f040f3d4'); // Report is in DATA-TEST-STIX_v2.json | ||
reportInternalId = report.internal_id; | ||
}); | ||
it('should plateform organization sharing and EE activated', async () => { // TODO extract set/unset EE and orga platfor in testQueryHelpers | ||
// Get organization id | ||
platformOrganizationId = await getOrganizationIdByName(PLATFORM_ORGANIZATION.name); | ||
|
||
// Get settings ID | ||
const SETTINGS_READ_QUERY = gql` | ||
query settings { | ||
settings { | ||
id | ||
platform_organization { | ||
id | ||
name | ||
} | ||
} | ||
} | ||
`; | ||
const queryResult = await adminQuery({ query: SETTINGS_READ_QUERY, variables: {} }); | ||
settingsInternalId = queryResult.data?.settings?.id; | ||
|
||
// Set plateform organization | ||
const platformOrganization = await adminQueryWithSuccess({ | ||
query: PLATFORM_ORGANIZATION_QUERY, | ||
variables: { | ||
id: settingsInternalId, | ||
input: [ | ||
{ key: 'platform_organization', value: platformOrganizationId }, | ||
{ key: 'enterprise_edition', value: new Date().getTime() }, | ||
] | ||
} | ||
}); | ||
expect(platformOrganization?.data?.settingsEdit.fieldPatch.platform_organization).not.toBeUndefined(); | ||
expect(platformOrganization?.data?.settingsEdit.fieldPatch.enterprise_edition).not.toBeUndefined(); | ||
expect(platformOrganization?.data?.settingsEdit.fieldPatch.platform_organization.name).toEqual(PLATFORM_ORGANIZATION.name); | ||
}); | ||
it('should share Report with Organization', async () => { | ||
// Get organization id | ||
organizationId = await getOrganizationIdByName(TEST_ORGANIZATION.name); | ||
const organizationSharingQueryResult = await adminQueryWithSuccess({ | ||
query: ORGANIZATION_SHARING_QUERY, | ||
variables: { id: reportInternalId, organizationId } | ||
}); | ||
expect(organizationSharingQueryResult?.data?.stixCoreObjectEdit.restrictionOrganizationAdd).not.toBeNull(); | ||
expect(organizationSharingQueryResult?.data?.stixCoreObjectEdit.restrictionOrganizationAdd.objectOrganization[0].name).toEqual(TEST_ORGANIZATION.name); | ||
|
||
// Wait for background task magic to happens | ||
await wait(5000); | ||
}); | ||
it('should Editor user access all objects', async () => { | ||
const REPORT_STIX_DOMAIN_ENTITIES = gql` | ||
query report($id: String!) { | ||
report(id: $id) { | ||
id | ||
standard_id | ||
objects(first: 30) { | ||
edges { | ||
node { | ||
... on BasicObject { | ||
id | ||
standard_id | ||
} | ||
... on BasicRelationship { | ||
id | ||
standard_id | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
`; | ||
const queryResult = await queryAsUserWithSuccess(USER_EDITOR.client, { | ||
query: REPORT_STIX_DOMAIN_ENTITIES, | ||
variables: { id: reportInternalId }, | ||
}); | ||
expect(queryResult.data.report.objects.edges.length).toEqual(10); | ||
}); | ||
it.skip('should delete Report', async () => { | ||
// Delete the case | ||
await adminQuery({ | ||
query: DELETE_QUERY, | ||
variables: { id: reportInternalId }, | ||
}); | ||
// Verify is no longer found | ||
const queryResult = await adminQueryWithSuccess({ query: READ_QUERY, variables: { id: reportInternalId } }); | ||
expect(queryResult?.data?.caseIncident).toBeNull(); | ||
}); | ||
it.skip('should plateform organization sharing and EE deactivated', async () => { | ||
// Remove plateform organization | ||
const platformOrganization = await adminQueryWithSuccess({ | ||
query: PLATFORM_ORGANIZATION_QUERY, | ||
variables: { | ||
id: settingsInternalId, | ||
input: [ | ||
{ key: 'platform_organization', value: [] }, | ||
{ key: 'enterprise_edition', value: [] }, | ||
] | ||
} | ||
}); | ||
expect(platformOrganization?.data?.settingsEdit.fieldPatch.platform_organization).toBeNull(); | ||
}); | ||
}); |
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.