-
Notifications
You must be signed in to change notification settings - Fork 14
Show RSDs with similarity #429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Corpratespaz
merged 13 commits into
develop
from
feature/OSMT-35-show-rsds-with-similarity
Jul 11, 2023
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8258e74
Add inline heading
manuel-delvillar d2dcb8e
Add inline error
manuel-delvillar db88b03
Fix conflict on rebase
manuel-delvillar 9f61827
Display similarities on import
manuel-delvillar 904109d
Add ngIf to extra information
manuel-delvillar a3f1dc8
Fix broken test
manuel-delvillar 30c9be7
Update api test
manuel-delvillar 1745ac8
Fix open anchor in accordian
manuel-delvillar eb13235
Add styles & improve ui
manuel-delvillar 8899bb1
Change location of warning
manuel-delvillar d88e184
Refactor code
manuel-delvillar 23f066c
Add new end point
manuel-delvillar 22af958
Update open api
manuel-delvillar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -23,4 +23,4 @@ | |
| true, | ||
| true, | ||
| true | ||
| ] | ||
| ] | ||
86 changes: 86 additions & 0 deletions
86
test/api-test/api/v3/search/skills/similarities/results/post-pre-request.js
This file contains hidden or 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,86 @@ | ||
| let skillStatements = [ | ||
| { | ||
| "statement": "Validate authorization and authentication runbooks and troubleshoots procedures (SOPs), and troubleshoots advanced authentication and authorization issues." | ||
| }, | ||
| { | ||
| "statement": "Create group and system authentication access." | ||
| }, | ||
| { | ||
| "statement": "Design network connections between a core network and an internet service provider." | ||
| }, | ||
| { | ||
| "statement": "Monitor network routers for performance issues." | ||
| }, | ||
| { | ||
| "statement": "Monitor network routers for security issues." | ||
| }, | ||
| { | ||
| "statement": "Configure network routers for traffic between a core network and an internet service provider." | ||
| }, | ||
| { | ||
| "statement": "Bake pies to throw at passersby." | ||
| }, | ||
| { | ||
| "statement": "Configure forest and domain trusts for Active Directory." | ||
| }, | ||
| { | ||
| "statement": "Manage project feature progress with agile Kanban boards." | ||
| }, | ||
| { | ||
| "statement": "Manage project feature progress with agile scrum boards." | ||
| }, | ||
| { | ||
| "statement": "Communicate blocking issues during the development cycle." | ||
| }, | ||
| { | ||
| "statement": "Accomplish agile project goals through collaboration with internal partners." | ||
| }, | ||
| { | ||
| "statement": "Paint edge trim without painters tape." | ||
| }, | ||
| { | ||
| "statement": "Maintain a cloud computing environment in Amazon Web Services (AWS)." | ||
| }, | ||
| { | ||
| "statement": "Access an application programming interface (API) with a programming language to change data for a task." | ||
| }, | ||
| { | ||
| "statement": "Engineer systems that leverage multi-platform application programming interface (API)." | ||
| }, | ||
| { | ||
| "statement": "Configure file backups to a cloud solution." | ||
| }, | ||
| { | ||
| "statement": "Identify which backed-up files must be restored." | ||
| }, | ||
| { | ||
| "statement": "Identify disaster recovery solutions for backing up and restoring computer systems." | ||
| }, | ||
| { | ||
| "statement": "Determine the hardware needed for the backup of a device's data." | ||
| }, | ||
| { | ||
| "statement": "Determine which files must be backed up from one device to another." | ||
| }, | ||
| { | ||
| "statement": "Perform manual backups of data from a device." | ||
| }, | ||
| { | ||
| "statement": "Implement Border Gateway Protocol solutions." | ||
| }, | ||
| { | ||
| "statement": "Implement continuity plans during the time of a disaster." | ||
| } | ||
| ]; | ||
|
|
||
| let body = { | ||
| mode: 'raw', | ||
| raw: JSON.stringify(skillStatements), | ||
| options: { | ||
| raw: { | ||
| language: 'json' | ||
| } | ||
| } | ||
| }; | ||
|
|
||
| pm.request.body.update(body); |
7 changes: 7 additions & 0 deletions
7
test/api-test/api/v3/search/skills/similarities/results/post.js
This file contains hidden or 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,7 @@ | ||
| // let expectedData is injected from <response-type>.json | ||
|
|
||
| pm.test("Check similarities results", function () { | ||
| let responseData = pm.response.json(); | ||
|
|
||
| pm.expect(responseData).to.have.deep.equal(expectedData); | ||
| }); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.