1.0.14 • Published 2 years ago

quick-specs v1.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

quick-specs

ioncakephper - quick-specs stars - quick-specs forks - quick-specs License Latest Stable Version NPM Downloads NPM Downloads

Create test files quickly from .yaml files. Put your test or specification title in a .yaml file, and create test files for Jest or Jasmine. Useful for developers and designers who want to write specification quickly, and write the specification test code later.

Installation

Install globally to use the CLI tool.

npm i -g quick-specs

Usage

You can use quick-specs either as a CLI tool, or inside your javacript code.

CLI

If you installed quick-specs globally, you can use the quickspecs tool at the command prompt. For example,

quickspecs -h
Usage: quickspecs [options] <input>

Quickly generate specification files for Jasmine/Jest

Arguments:
  input                       path to input filename in YAML format (default        
                              extension: .yaml)

Options:
  -V, --version               output the version number
  -o, --output <outfilename>  specification filename
  -p, --path <path>           path to specification folder (default: "tests")       
  -t, --target <platform>     target platform (choices: "jest", "jasmine", default: 
                              "jest")
  -h, --help                  display help for command

Input file examples

  1. A list of test cases

Create example-1.yaml:

- Returns a positive number
- Converts negative numbers to positive
- Acccepts empty parameter list
quickspecs example-1
it('Returns a positive number', () => {
    // Your code goes here...
    expect(true).toBe(true);
})

it('Converts negative numbers to positive', () => {
    // Your code goes here...
    expect(true).toBe(true);
})

it('Acccepts empty parameter list', () => {
    // Your code goes here...
    expect(true).toBe(true);
})
  1. A test suite with several test cases

Create example-2.yaml:

suite: My function
items:
    - Returns a positive number
    - Converts negative numbers to positive
    - Acccepts empty parameter list
quickspecs example-2
describe('My function', () => {
    it('Returns a positive number', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Converts negative numbers to positive', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Acccepts empty parameter list', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

})
  1. A list of test suites, each suite has several test cases

Create example-3.yaml:

-
    suite: My first function
    items:
        - Returns a positive number
        - Converts negative numbers to positive
        - Acccepts empty parameter list

-
    suite: My second function
    items:
        - Returns a positive number
        - Converts negative numbers to positive
        - Acccepts empty parameter list
quickspecs example-3
describe('My first function', () => {
    it('Returns a positive number', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Converts negative numbers to positive', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Acccepts empty parameter list', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

})

describe('My second function', () => {
    it('Returns a positive number', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Converts negative numbers to positive', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Acccepts empty parameter list', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

})
  1. Test suite with a mixture of suite and test cases

Create example-4.yaml:

-
    suite: My first function
    items:

        - 
            suite: Dealing with test data
            items:
                - works with large numbers
                - works with small numbers
                - returns undefined when given non-numbers

        - Returns a positive number
        - Converts negative numbers to positive
        - Acccepts empty parameter list

-
    suite: My second function
    items:
        - Returns a positive number
        - Converts negative numbers to positive
        - Acccepts empty parameter list
quickspecs example-4
describe('My first function', () => {
    describe('Dealing with test data', () => {
        it('works with large numbers', () => {
            // Your code goes here...
            expect(true).toBe(true);
        })

        it('works with small numbers', () => {
            // Your code goes here...
            expect(true).toBe(true);
        })

        it('returns undefined when given non-numbers', () => {
            // Your code goes here...
            expect(true).toBe(true);
        })

    })

    it('Returns a positive number', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Converts negative numbers to positive', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Acccepts empty parameter list', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

})

describe('My second function', () => {
    it('Returns a positive number', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Converts negative numbers to positive', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

    it('Acccepts empty parameter list', () => {
        // Your code goes here...
        expect(true).toBe(true);
    })

})

In code

Create my-specs.yaml

suite: My application
items:
  - reads a yaml file
  - writes a js file

In your js code:

const qws = require('quick-specs');

let appSpecs = qws.load('my-specs.yaml');
let output = qws.buildSpecification(appSpecs)
console.log(output);

You will see:

description('My application', () -> {
   it('reads a yaml file', () => {
     // Your code goes here
     expect(true).toBe(true)
   })
  
   it('reads a yaml file', () => {
     // Your code goes here
     expect(true).toBe(true)
   })
})

License

MIT License

Copyright (c) 2021 Ion Gireada

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.

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago