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.
ngrx-selector-fake
Advanced tools
For tests where we don't want to mock/stub/spy the whole selector, only a select few dependent selectors that are not relevant for the test case/suite.
For tests where we don't want to mock/stub/spy the whole selector, only a select few dependent selectors that are not relevant for the test case/suite.
npm i --save ngrx-selector-fake
We were aiming at creating a similar experience to Jest/Jasmine Spy
s.
fakeSelector(object, selectorName)
Creates fake object, returns a SelectorFake. Example:
export interface State {
flag: boolean;
value: number;
}
export namespace FeatureStateSelectors {
export const selectFlag = (state: State) => state.flag;
export const selectValue = (state: State) => state.value;
export const memoizedCalculatorSelector = createSelector(selectValue, (val: number): number => {
return val * 2;
});
export const memoizedComplexSelector = createSelector(
selectFlag,
memoizedCalculatorSelector,
(flag: boolean, calculated: number) => flag ? calculated : 0
);
}
Test example:
describe("when the subselectors are partially faked", () => {
beforeEach(() => {
fakeSelector(FeatureStateSelectors, "memoizedComplexSelector").and.useSelectors(
() => true, // stubbing the first dependent selector
FeatureStateSelectors.memoizedCalculatorSelector, // using the original for the second dependent
);
});
it("should get the state as faked, and calculate with that", (done) => {
store.select(FeatureStateSelectors.memoizedComplexSelector).subscribe((val) => {
expect(val).toBe(2);
done();
});
});
});
See more exapmles in tests
FAQs
For tests where we don't want to mock/stub/spy the whole selector, only a select few dependent selectors that are not relevant for the test case/suite.
The npm package ngrx-selector-fake receives a total of 0 weekly downloads. As such, ngrx-selector-fake popularity was classified as not popular.
We found that ngrx-selector-fake 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.