Skip to content

it-shark-pro/nodejs-assignments

Repository files navigation

Build Status Hackage-Deps Greenkeeper badge GitHub release

IT Shark

Nodejs Assignments

Docs

The motivation of this project is to show TDD process in the wild to the beginners. Assingment tests are implemented in various ways to feel a difference and gain the experience what manner is good, what is bad and what is ugly.

Another idea is to prepare assignment to cover main nodejs features, to drilling and mastering skills. Some tasks are practical, but some tasks are rather synthetic.

And the last idea is to inure trainees to work using unit test and feel uncomfortable when programming without tests.

To start javascript assignments please follow the next steps:

How to fork this repo

  • Click the Fork button at the top-right corner of this page and the repository will be copied to your own account.
  • Run git clone https://github.com/<your-account>/nodejs-assignments.git from command line to download the repo.

How to setup travis-ci

  • Open https://travis-ci.org/ and sign in with your github account.
  • Activate your forked repo nodejs-assignments.
  • Edit local README.md file and update all links (just replace all occurrences of 'it-shark-pro' with your account name).
  • Commit and push updated README.md to github:
  git add README.md
  git commit -m "Update the links"
  git push origin master

How to setup work environment

  • Download and install the latest Nodejs.
  • Run npm install from you repository folder to download the required modules. All dependent modules will be located in the node_modules folder.
  • Open your favorite editor and complete tasks.
  • Open your terminal and use npm test command to run all tests. You can run single file by passing it as argument npm test ./test/01-strings-tests.js.
  • The local repo folder has the following structure:
    node_modules - app dependences restored by npm install command, you can delete this folder and restore later again.
    task - folder with tasks modules, it's your main folder.
    test - folder with tests modules to verify the tasks completion.

How to implement assignments using TDD fashion

Now you are ready to implement assignments. Tasks modules are located in the task folder. Each module consists of several tasks for specified topic. Each task is usually a regular function:

  /**
   * Reads file by given path synchronously and returns file data.
   *
   * @param {String} path
   * @return {String}
   *
   * @example
   *   'filder/file.txt' => 'File content'
   */
  function readFileSync(path) {
    /* implement your code here */
    throw new Error('Not implemented');
  }

Resolve this task using the following TDD steps:

  • Run unit tests and make sure that everything is OK and there are no failing tests.
  • Read the task description in the comment above the function. Try to understand the idea. If you got it you are to write unit test first, but unit tests are already prepared :) Skip step with writing unit tests.
  • Remove the throwing error line from function body
     throw new Error('Not implemented');

and run the unit tests again. Find one test failed (red). Now it's time to fix it!

  • Implement the function by any way and verify your solution by running tests until the failed test become passed (green).
  • Your solution work, but now time to refactor it. Try to make your code as pretty and simple as possible keeping up the test green.
  • Once you can't improve your code and tests are passed you can commit your solution.
  • Push your updates to github server and check if tests passed on travis-ci.
  • If everything is OK you can try to resolve the next task.

How to debug tasks

To debug tests you can use Node inspector. To install it just run npm install -g node-inspector in your terminal. Then follow next steps:

  • Add debugger; to the first line of your task.
  • Run your test file with npm run test-debug ./test/01-strings-tests.js.
  • In another terminal run node-inspector and copy link from the output.
  • Open the link in your favorite browser. You should see Chrome Developers Tools like interface where you can debug your tasks.
  • When you found and fix your issue, close the browser's tab with the debug tools, stop the node-inspector by pressing Ctrl-C, stop the test runner by pressing Ctrl-C, remove the debugger; from your task.

How to debug (beginner's way)

There is an easier way to debug for beginners with free Visual Studio Code:

{
    "version": "0.2.0",
    "configurations": [
        {
           ...
           "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
           ...
           "args": ["./test/01-file-system-tests.js"],
           ...
         },
         ...
     ]
}
  • Click in the gutter to the left of the line number to set the breakpoint. Press F5 to run debug.
  • NOTE: The launch.json is stored in the .vscode project folder.

Contribution

Feel free to contribute into this project. New tasks and katas are welcome.

ESLint

To fix linting execute:

npm run lint -- --fix

About

A test-driven approach to assessing NodeJS skills

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published