Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ember-cli-odyssey
Advanced tools
Random walks for acceptance tests.
ember install ember-cli-odyssey
In your acceptance test import RandomWalk
:
import RandomWalk from 'ember-cli-odyssey';
Then setup your custom steps for an odyssey through the app (The sample uses ember-cli-page-object):
import rootPage from '../../pages/root';
import loginPage from '../../pages/auth/login';
import profilePage from '../../pages/auth/profile';
test('odyssey through the app', async function (assert) {
// define all things that are needed for the steps, e.g. email, password...
const randomWalk = new RandomWalk(this, assert);
randomWalk.addStep('visitRootPage', {
isApplicable: () => currentURL() !== '/',
async execute() {
await rootPage.visit();
assert.equal(currentURL(), '/', 'I can visit the root page');
});
randomWalk.addStep('visitLoginPage', {
isApplicable: () => currentURL() === '/',
async execute: () => await rootPage.clickLogin(),
});
randomWalk.addStep('login', {
isApplicable: () => currentURL() === '/login',
async execute: () => await loginPage.login(email, password),
});
randomWalk.addStep('visitUserProfile', {
isApplicable: () => currentURL() !== '/login',
async execute() {
await profilePage.visit();
assert.equal(currentURL(), '/profile', 'I can visit the profile page');
},
});
randomWalk.addStep('editUserProfile', {
isApplicable: () => currentURL() === '/profile',
async execute() {
await profilePage
.name('Howard Hamster')
.username('emberman')
.submit();
assert.equal(currentURL(), '/profile', 'After editing my profile I stay on the profile page');
assert.equal(profilePage.name(), 'Howard Hamster', 'My name got changed');
assert.equal(profilePage.username(), 'emberman', 'My username got changed');
},
});
// Doing the random walk
randomWalk.setup();
// do a few deterministic steps
await randomWalk.execute('visitLoginPage');
await randomWalk.execute('login');
// and then 20 random steps
await randomWalk.doSteps(20);
});
git clone <repository-url>
cd ember-cli-odyssey
npm install
npm run lint:js
npm run lint:js -- --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"npm test
– Runs ember try:each
to test your addon against multiple Ember versionsember serve
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.
FAQs
Random walks for acceptance tests.
We found that ember-cli-odyssey 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.