|
| 1 | +--- |
| 2 | +id: how-coderoad-works |
| 3 | +title: How CodeRoad Works |
| 4 | +sidebar_label: How CodeRoad Works |
| 5 | +--- |
| 6 | + |
| 7 | +There are really a few major pieces to understand how CodeRoad works. |
| 8 | + |
| 9 | +1. [How Tests Work](#how-tests-work) |
| 10 | + |
| 11 | +2. [How CodeRoad is Built on Git](#built-on-git) |
| 12 | + |
| 13 | +3. [How CodeRoad Hooks & Actions work](#how-hooks-and-actions-work) |
| 14 | + |
| 15 | +### How Tests Work |
| 16 | + |
| 17 | +In CodeRoad, the user is given a set of **levels** composed of one more **tasks**. |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | +Each task is judged to pass (β) or fail (β) by the result of code tests that runs in the background. Tests can be triggered by saving a file, or by a trigger that listens to specific files for changes. |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | +If a test fails, the first failing test name is returned to the user as a hint to identify the problem. |
| 26 | + |
| 27 | +Tests might be in another directory. Those folders or files might even be hidden from you by the tutorial creator. |
| 28 | + |
| 29 | +But where does the code for these tests come from? |
| 30 | + |
| 31 | +### Built on Git |
| 32 | + |
| 33 | +CodeRoad tutorials are stored and loaded using Git, a popular version control system. If you're unfamiliar with Git, think of it as a way to save or load progress from checkpoints called "commits". |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | +In a tutorial, these commits have a standardized order. First you setup the test runner, then the task tests, then the solution. This pattern is similar to a kind of development called βTDDβ or βtest driven developmentβ. Write tests for the problem you want to solve, then save the results when all the tests pass. This pattern can also be used to play out a tutorial like a game: users get a task, then must solve it to continue. |
| 38 | + |
| 39 | + |
| 40 | + |
| 41 | +When a tutorial starts, CodeRoad loads git commits from a tutorial up until the first task commit. These commits contain all of the code setup, test runner configuration and tests for the given task. |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | +When a user passes a task, their progress is saved as a commit. Then the next task commit is loaded. |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | +Again notice that the user provides the solution and it is not loaded from the tutorial. This allows users to go a little off-road in a tutorial and provide their own solutions. |
| 50 | + |
| 51 | +#### Why Git |
| 52 | + |
| 53 | +Git provides a number of benefits: |
| 54 | + |
| 55 | +- users can save their progress to a service like GitHub to build a public portfolio |
| 56 | +- users can continue working on their project after a tutorial is completed |
| 57 | +- software developers are largely familiar with Git, and often TDD, making it easy to create tutorials |
| 58 | +- Git provides a mechanism for resolving merge conflicts if they happen to occur |
| 59 | +- Git provides a mechanism for "resetting" a tutorial, see more below! |
| 60 | + |
| 61 | +#### Reset |
| 62 | + |
| 63 | +If at some point the user is a bit too βoff-roadβ from the solution, the user can always return to the βgolden pathβ by pressing the **reset** button. The reset button reloads the commits up to that point entirely from the tutorial. |
| 64 | + |
| 65 | + |
| 66 | + |
| 67 | +In the example above you can see the user is βresetβ back to the original tutorial answers, and back to the second task. |
| 68 | + |
| 69 | +### How Hooks and Actions Work |
| 70 | + |
| 71 | +To make a functional tutorial, tutorial creators need a bit more control over what can be run and when. For example, a test runner wouldn't really work if the package dependencies for that test runner weren't installed. |
| 72 | + |
| 73 | +An **action** is a piece of functionality that can be run. These include: |
| 74 | + |
| 75 | +- `commands` - a list of cli commands to run. For example, "npm install" |
| 76 | +- `vscodeCommands` - a list of vscode API commands to run. For example, "setLayout" to change the layout of windows |
| 77 | +- `watchers` - a list of files to listen to. If a file changes, the test runner will run automatically |
| 78 | +- `files` - a list of files to open in the users workspace to drive the users attention. |
| 79 | +- `subtasks` - a task made up of multiple other tests where all must pass to continue |
| 80 | +- `filter` - a regex passed into the test runner to limit the tests returned |
| 81 | + |
| 82 | +A **hook** in CodeRoad is a place where a tutorial creator can tap in to run an action. Hooks include: |
| 83 | + |
| 84 | +- `config.setup` - when the tutorial setup. This is a great place to setup your test runner. |
| 85 | +- `task.setup` - when a task is started |
| 86 | +- `task.solution` - when a solution is loaded from a [reset](#reset) |
| 87 | + |
| 88 | +Hooks and actions combined provide a flexible environment for tutorial development. |
0 commit comments