All Projects → we-sh → 42ShellTester

we-sh / 42ShellTester

Licence: other
Integration test suite for Shell implementation

Programming Languages

shell
77523 projects
Makefile
30231 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to 42ShellTester

minishell tester
42 | Complex tester for minishell (42cursus)
Stars: ✭ 31 (-11.43%)
Mutual labels:  42born2code, 42, 42school
passport-42
Passport strategy for authenticating with 42 using the OAuth 2.0 API
Stars: ✭ 26 (-25.71%)
Mutual labels:  42born2code, 42, 42school
42 Projects
What is 42? How does curriculum look like? A manual reference for all 42 projects I've done so far (Zappy, Malloc, C++ Piscine... check out for more)! 💡📈
Stars: ✭ 111 (+217.14%)
Mutual labels:  42born2code, 42, 42school
42MapGenerator
Generate FdF maps of the real world, the Earth's moon and the planet Venus for the project Fil de Fer
Stars: ✭ 58 (+65.71%)
Mutual labels:  42born2code, 42, 42school
1337
This repository contains a collection of 42School cursus projects in addition to the pool/piscine days (with a detailed step by step explanation). Enjoy!
Stars: ✭ 35 (+0%)
Mutual labels:  42born2code, 42, 42school
42header.vim
Add and update the 42 comment header at the top of your files
Stars: ✭ 15 (-57.14%)
Mutual labels:  42born2code, 42, 42school
ft get next line
42 São Paulo - get_next_line
Stars: ✭ 17 (-51.43%)
Mutual labels:  42born2code, 42, 42school
42-piscine-exam
This repo has all exercises of "C Exam Alone In The Dark - Beginner" sorted from level_00 to Level_05
Stars: ✭ 218 (+522.86%)
Mutual labels:  42born2code, 42
init
School 42 project // DevOps project
Stars: ✭ 13 (-62.86%)
Mutual labels:  42, 42school
ftprintfdestructor
A script that destroys the school 42 project ft_printf
Stars: ✭ 20 (-42.86%)
Mutual labels:  42born2code, 42
IRC-Server
IRC server based on TCP/IP protocol to rfc1459 standard
Stars: ✭ 27 (-22.86%)
Mutual labels:  42born2code, 42school
examrank-02-03-04-05-06
exam project 2020
Stars: ✭ 195 (+457.14%)
Mutual labels:  42born2code, 42school
42tools
Making 42 life better
Stars: ✭ 43 (+22.86%)
Mutual labels:  42born2code, 42
libftTester
Tester for the libft project of 42 school
Stars: ✭ 141 (+302.86%)
Mutual labels:  42
Cleaner 42
Only for 42Network schools, Cleaner_42 script is linked to cclean command/program, and it saves you some memory space.
Stars: ✭ 186 (+431.43%)
Mutual labels:  42born2code
gnlTester
Tester for the get_next_line project of 42 school
Stars: ✭ 87 (+148.57%)
Mutual labels:  42
libft-war-machine
forked repository of libftest (by jtoty) for libft at 42
Stars: ✭ 167 (+377.14%)
Mutual labels:  42
printfTester
Tester for the ft_printf project of 42 school
Stars: ✭ 94 (+168.57%)
Mutual labels:  42
piscine42
School 42 Piscine C projects
Stars: ✭ 11 (-68.57%)
Mutual labels:  42
42cursus
42 project!
Stars: ✭ 27 (-22.86%)
Mutual labels:  42born2code

42ShellTester

42ShellTester is an integration testing framework wrote in Bash and designed for the pedagogical projects of the Shell branch at School 42 (Paris) listed bellow:

  • minishell
  • 21sh
  • 42sh

It brings you an easy way to add, maintain and run integration tests, helping you to work step by step on your Shell implementation.

42ShellTester is currently packaged with 289 tests.

Install

git clone https://github.com/we-sh/42ShellTester ~/42ShellTester

Run tests

Add the path to your Shell as argument:

bash ~/42ShellTester/42ShellTester.sh "/ABSOLUTE/PATH/TO/YOUR/SHELL"

Options

--filter + $regex

Run tests that matches with the specified regular expression (e.g. --filter "builtins").

--reference + $binary

Run tests that does not fail with the specified Shell binary (e.g. --reference "bash").

--posix

Run tests that are POSIX compliant only (run all by default).

--hard

Run tests that are marked as « hard » (omitted by default).

--pending

Also run pending tests.

--all

Equivalent to use the two options --pending and --hard together.

--show-success

Also display tests that succeed (hidden by default).

List of tests

Development

Coding convention

  • Scope indentation must be done with 2 spaces
  • Variable names must be upper case (e.g. INDEX)
  • Global variables must be prefixed with GLOBAL_ (e.g. GLOBAL_TOKEN)
  • Variable expansion must be surrounded by curly braces (e.g. ${VARIABLE})
  • Arguments of functions and commands must be surrounded by double or simple quotes (e.g. run_assert "STDERR")
  • Semicolon are banned so that words like then and do are always at start of lines (e.g. wrong inline code: if [ ... ]; then cmd; fi)
  • Folder names may only contain alphanumeric and -

Adding new test

An integration test must be self-sufficient, that means executing the full test suite or only one test must result in the same failed or success status. The framework 42ShellTester brings you tools for that!

Firstly, tests are executed inside a temporary folder tmp/ that is created at launch time and placed at the root installation folder of the framework. You may generate temporary files, binaries and folders that are needed for your test, but pay attention to not touch external folders. Use the before_exec callback to generate these resources.

Secondly, each test is executed within a sub-shell, so that you may modify the environment without disrupting the test suite. Use the before_exec callback to modify the environment.

Thirdly, a test must concern one single feature at a time, that means wherever possible you must avoid the use of multiple builtins or capabilities (e.g. do not use a pipe | within a test that concerns the builtin env, or again use absolute paths to binaries like /bin/ls to let the Shell implementation not support the PATH, except if you precisely test this feature!).

Fourthly, when a test need binaries like /bin/env or /bin/echo, prefer to recode your own, simplier and multi-platform, and place it in support/ folder. Then use the before_exec callback to compile it and make it available for your test.

Sixthly, a test that is not POSIX compliant must contain a file named non-posix containing a small explanation of why.

Finally, don't write a README and let the task generate_readmes do it for you :-) A description may be added in a file named description that will appear at the top of the README.

Follow the guideline to add a new test:

  1. Create a sub-folder in spec/ (e.g. spec/minishell/builtin/cd/new-test/)
  2. If necessary, create a file before_exec that contains the shell commands that prepare the environment and the temporary resources (e.g. mkdir valid_folder)
  3. Create a file stdin that contains the shell command you want to test (e.g. cd invalid_folder)
  4. Create the files stdout and/or stderr that contain the expected output assertions (e.g. in stderr: expected_to_not be_empty) (see available assertions and verbs bellow)
  5. You may also create a file misc that contains special expectations not concerning output on standard and error (e.g. expected_to_not exit_with_status 0)
  6. If necessary, create a file description that describes more precisely the purpose of the test (e.g. Trying to access invalid folder must display an error on standard error and result in a failure status code) (the description will be included at top of the auto-generated README)
  7. If the test is not POSIX compliant, create a file non-posix that explains why.

Assertions

  • expected_to / expected_to_not + verb: An assertion beginning with expected_to (or its opposite expected_to_not) makes the test resulting in failure status if the expectation that follows does not comply.

  • might / might_not + verb: An assertion beginning with might (or its opposite might_not) always makes the test resulting in success status. When the expectation that follows may not comply, it is nevertheless considered as success but it displays a warning message.

Verbs

  • be_empty: Actual output is empty.
  • create_file + $filename: Actual command creates a file named $filename. May also be followed with a file test:
    • matching_regex + $regex: At least one line of the file matches with the regular expression $regex.
    • not_matching_regex + $regex: Any line of the file does match with the regular expression $regex.
    • with_nb_of_lines + $int: The file contains exactly $int lines.
  • exit_with_status + $int: The Shell termination results in the exit status $int.
  • have_nb_of_lines + $int: Actual output contains exactly $int lines.
  • match_regex + $regex: At least one line of actual output does match with the regular expression $regex.
    • once: The matching is limited to only one occurrence.
    • $int times: The matching must exactly occur $int times.
  • match_each_regex_of_file + $filename: Actual output does match with each regular expression contained in the file named $filename (in an indifferent order).

Adding new verb

A verb is a function that is prefixed by run_verb_ and that returns 0 or 1 according to the tested behavior. It may return a status 255 when bad or missing argument.

At runtime, the framework provides a list of variables that can be used by the verbs:

  • RESPONSE: The path to the file containing actual output (STDOUT or STDERR)
  • RESPONSE_EXIT_STATUS: The exit status of the Shell termination
  • EXPECTED_TO_ARGS[]: An array containing the arguments following the verb

Follow the guideline to add a new verb:

  1. Choose the best name that respects the CamelCase convention and that can be human-readable when used with an assertion (e.g. expected_to be_empty can be read actual output is expected to be empty)
  2. Create a file in lib/verbs/ with the exact name of the verb and that is prefixed with run_verb_ (e.g. lib/verbs/run_verb_be_empty.sh
  3. Add a shebang: #!/bin/sh and a comment that describes the tested behavior
  4. Create a function with the exact name of the verb and that is prefixed with run_verb_ (the same as the file name) and make it respect the following rules:
  • Local variables must be declared with local
  • No output can be done with echo or printf
  • Function returns 0 on succes, 1 on fail or 255 on bad use
  • Use the array EXPECTED_TO_ARGS[] to take advantage of arguments (e.g. expected_to match_regex "regex", then EXPECTED_TO_ARGS[0] contains regex)

Support binaries

The framework 42ShellTester provides several binaries to be used within the tests. Using them instead of using Unix binaries prevents from undefined behaviors and compatibility errors.

Find the available list of support binaries bellow:

  • ./display_env: A binary that iterates on **envp and write each element on standard output.
  • ./display_program_name: A binary that writes its name on standard ouput.
  • ./display_pwd: A binary that writes on standard output the absolute path of the current directory returned by getcwd(3), encountered with the strings PWD: and :PWD.
  • ./exit_with_status: A binary that immediately exits with the status given as first argument.
  • ./read_on_stdin: A binary that reads on standard entry and write each line on standard output suffixed with the character @ (e.g. same behavior as cat -e and the newline character). When read(2) returns -1, then the string STDIN READ ERROR is written on standard error.
  • ./sleep_and_exit_with_status: A binary that sleeps for a duration in seconds given as first argument and then exits with status given as second argument.
  • ./sleep_and_write_on_stderr: A binary that sleeps for a duration in seconds given as first argument and then writes on STDERR the string given as second argument without EOL.
  • ./write_all_arguments_on_stdout: A binary that writes on standard output each argument separated by the symbol @. If no argument is given, it writes the string "nothing to be written on stdout".
  • ./write_on_stderr: A binary that writes on standard error the first given argument (the same behavior as echo but with only one argument) and exits with an error status code given as second argument. If no argument is given, it writes the string "write on stderr" and exit with status 1.
  • ./write_on_stdout: A binary that writes on standard output the first given argument (the same behavior as echo but with only one argument). If no argument is given, it writes the string "write on stdout".
  • ./write_on_stdout_and_stderr: A binary that writes on standard output the first given argument, and writes on standard error the second given argument. If an argument is missing, it writes the strings "write on stdout" and "write on stderr".

Tasks

  • bash ./tasks/generate_readmes.sh (only on master branch) to automaticaly generate the README files of tests

The Team

Logo credits

Edouard Audeguy
Illustrateur / Infographiste
https://edouardaudeguy.wix.com/portfolio

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].