
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
featureful
Advanced tools
Automatic verification of your test implementations against cucumber features.
featureful makes it easy to keep your test implementations and feature descriptions in sync, by providing configurable, pattern based Spec matching and validation.
featureful supports a variety of testing frameworks and does not require any integration with your current test runner at all.
It achieves this by performing the following three simple steps:
The following terminology will be used throughout the documentation:
A Feature is the specification for one Test, in one or more actual feature files.
A Test is the implementation of one specific Feature in one or more actual test files.
A Spec is the combination (matching) of exactly one Feature and its corresponding Test.
Matching is the process of parsing both actual feature and test files and using one of the available matching algorithms to assign them to their corresponding Spec.
Note: A explained above, a Spec can actually consist of multiple Feature and Tests files, as long as the all reference (match) to the same exact Feature.
featureful provides a generic binary for use in all environments.
It can be installed by running:
npm -g install featureful
The binary can be used to verify tests against features by pointing it to a valid node module that exports a featureful options object.
$ featureful test/config.js
In order to enhance a existing Junit compatible XML test report with meta information from both Test and Feature files, pass its path as the second argument after the configuration file.
$ featureful test/config.js test/report/junit.xml
The binary can also be used for parsing .feature files into a JSON based AST
which can be used for custom tooling needs.
$ featureful features/**/*.feature
Files
[{
"type": "File"
"filename": "/test/parser/ast/features/valid/a.feature",
"features": Features
}, ...]
Features
[{
"type": "Feature",
"tags": [
"tagOne",
"tagTwo"
],
"title": "A Feature",
"description": "A\ndescription\nof\nthe \nfeature.",
"location": {
"filename": "/test/parser/ast/features/valid/a.feature",
"line": 2,
"col": 0
},
"scenarios": Scenarios
}, ...]
Scenarios
[{
"type": "Scenario",
"tags": [
"tagOne",
"tagTwo"
],
"title": "A Scenario",
"location": {
"filename": "/test/parser/ast/features/valid/a.feature",
"line": 11,
"col": 4
},
"steps": Steps,
"examples": Examples
}, ...]
Steps
[{
"type": "Given|When|Then",
"title": "Given|When|THen something happens",
"argument": Argument
"location": {
"filename": "/test/parser/ast/features/valid/a.feature",
"line": 13,
"col": 8
}
}]
Examples
Arguments
If you are already using Node.js featureful is available as a grunt task:
grunt.initConfig({
featureful: {
targetName: {
options: <featureful options object>
}
}
});
grunt.loadNpmTasks('featureful');
featureful provides the following options for configuration in order to match the needs of your environment:
Object features: Configuration options for finding and parsing cucumber *.feature files
pattern: A glob pattern matching the locations of your feature filesObject tests : Configuration options for finding and parsing your test files
String pattern: A glob pattern matching the locations of your strings
String framework: The Framework your tests use
Built-in frameworks
We currently provide support for:
mochajunit(WIP)ocmock(WIP)For examples please take a look at
/test/parser/framework.
Custom frameworks
You can also specify the path to your Node.js module that exports your custom Framework constructor.
For details on how to implement your own framework parser, please take a look at
/lib/framework.
Object specs: Configurations for matching and ignoring specs
Object matching: Configuration on how to match Features and Tests up into Specs
String|Function method: The method to use for matching
This can be either one of the builtin methods:
title(the default): Will match Features and Tests based on their titles.This allows for multiple files per feature / test, but will not be able to nicely report typos in Feature / Test titles.
path: Will use the glob patterns defined for tests and features to match up the files.For example the patterns
feature/**/*.featureandtest/**/*.test.jswould expect the filefeature/foo/bar/a.featureto have its test implemented intest/foo/bar/a.test.jsand the other way around.
This does not support multiple files per feature / test, but can report typos in Feature / Test titles and requires little setup except for the initial directory structure.
tag: Will match Features and Tests based on their Tag annotations.
Or a custom function in the form of
String: matcher(Test/Feature, PathDescriptor, Options), please refer to/test/specs/match/customfor implementation details.
pattern: A pattern for the built-in tag matching method.An example would be/^spec\-(\d+)/, where the capure group should be the unique identifier for the Spec.
Object ignores: Configuration on how to ignore Features, Tests and Scenarios
String|Function method: The method to use for ignoring
This can be either one of the builtin methods:
tag: Will ignores Features and Tests based on their Tag annotations.
Or a custom function in the form of
String: matcher(Test/Feature/Scenario, PathDescriptor, Options), please refer to/test/specs/ignore/customfor implementation details.
pattern: A pattern for the built-in tag matching method.An example would be/^(ignore|hide)$/ will ignore everything which has either a ignore or hide tag.
Object reporter: Configurations for XML report rewriting
If this property is present NO validation will be performed, instead Tests and Features will be parsed and the specified XML file will be rewritten with the previously retrieved tag information.
path: Path to the Junit compatible XML report of a test run.{
features: {
// Match all feature files under this glob pattern
pattern: 'features/**/*.feature'
},
tests: {
// Match all feature files under this glob pattern
pattern: 'tests/**/*.test.js',
// Tests are written in BDD style using Mocha
framework: 'mocha'
},
specs: {
// We want our Features and Tests to be combined
// into Specs based on their paths
matching: 'path'
},
reporter: {
// If present, this will perform no validation but instead will parse
// features and tests and update the specified junit.xml report
// with meta information
path: '/tests/junit.xml'
}
}
Copyright (c) 2015 Ivo Wetzel.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Login: email / password -> token / user info
Logout: token invalidieren (ist das im aktuell setting notwendig?)
Passwort zurücksetzen
FAQs
Automatically verify your tests implementations against cucumber feature specs.
The npm package featureful receives a total of 17 weekly downloads. As such, featureful popularity was classified as not popular.
We found that featureful 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
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.