
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@jamietanna/spectral-test-harness
Advanced tools
A test harness for validation of Spectral API linting rules
A test harness to make it easier to write tests for your Spectral API linting rules.
To install it for the current project, as a development-only dependency:
npm install --save-dev @jamietanna/spectral-test-harness
An example project can be found on GitLab at jamietanna/spectral-jest.
This project is somewhat opinionated, and expects the following hierarchy:
test
├── rules.test.js
├── semver.test.js
└── testdata
├── complete
│ └── valid.yaml
└── semver
├── invalid.yaml
└── valid.yaml
3 directories, 5 files
Then within the semver.test.js
:
const { retrieveDocument, setupSpectral, resultsForCode } = require('@jamietanna/spectral-test-harness')
describe('semver', () => {
test('fails when not a number', async () => {
const spectral = await setupSpectral('ruleset.yaml')
const document = retrieveDocument('semver/invalid.yaml')
const results = resultsForCode(await spectral.run(document), 'semver')
expect(results.length).toBeGreaterThanOrEqual(1)
})
test('passes when valid format', async () => {
const spectral = await setupSpectral('ruleset.yaml')
const document = retrieveDocument('semver/valid.yaml')
const results = resultsForCode(await spectral.run(document), 'semver')
expect(results).toHaveLength(0)
})
})
To test the following ruleset:
extends:
- spectral:oas
rules:
# via https://github.com/openapi-contrib/style-guides/blob/c5326037027afb8bd0ce5a5d4ad88be7b048ef64/openapi.yml
semver:
severity: error
recommended: true
message: Please follow semantic versioning. {{value}} is not a valid version.
given: $.info.version
then:
function: pattern
functionOptions:
match: "^([0-9]+.[0-9]+.[0-9]+)$"
Cannot find module 'nimma/legacy'
If you're hitting an issue like the below:
FAIL test/rules.test.js
● Test suite failed to run
Cannot find module 'nimma/legacy' from '../spectral-test-harness/node_modules/@stoplight/spectral-core/dist/runner/runner.js'
Require stack:
/home/jamie/workspaces/jvt.me/tmp/spectral-test-harness/node_modules/@stoplight/spectral-core/dist/runner/runner.js
/home/jamie/workspaces/jvt.me/tmp/spectral-test-harness/node_modules/@stoplight/spectral-core/dist/runner/index.js
/home/jamie/workspaces/jvt.me/tmp/spectral-test-harness/node_modules/@stoplight/spectral-core/dist/spectral.js
/home/jamie/workspaces/jvt.me/tmp/spectral-test-harness/node_modules/@stoplight/spectral-core/dist/index.js
/home/jamie/workspaces/jvt.me/tmp/spectral-test-harness/index.js
test/rules.test.js
at Resolver.resolveModule (node_modules/jest-resolve/build/resolver.js:324:11)
at Object.<anonymous> (../spectral-test-harness/node_modules/@stoplight/spectral-core/src/runner/runner.ts:9:1)
This is caused by Jest only supporting package exports in version 28.0.0 or later, so if you are using an older version you will need to upgrade.
0.3.0
2022-29-12
Breaking:
FAQs
A test harness for validation of Spectral API linting rules
The npm package @jamietanna/spectral-test-harness receives a total of 2,918 weekly downloads. As such, @jamietanna/spectral-test-harness popularity was classified as popular.
We found that @jamietanna/spectral-test-harness demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.