Giter Site home page Giter Site logo

Comments (6)

pkristian avatar pkristian commented on May 20, 2024

hm, could you visualize schema you have in mind? pseudocode will be anough. because i am afraid i do not fully understand how it should look like.
maybe #4 is place where it could fall into?

from mishell.sh.

franiglesias avatar franiglesias commented on May 20, 2024

testAll.sh is sort of a generic test runner. Sometimes you need to create a scenario for the test to run (in this case you need to create repositories, directories, etc). Sometimes this scenario is common for all the tests, and sometimes is different.

The idea is something like:

#!/usr/bin/env bash

set -e

cd "$(dirname "$0")"

if [ -e "./setUp.sh" ];then
    bash "./setUp.sh"
fi

countTests=0
countFailed=0

for testCase in $(ls -d */)
do
{
    countTests=$((countTests + 1))

    expected="$(cat $testCase/expected)"

    # execute if present bash $testCase/setUp.sh
    actual="$(bash $testCase/command.sh)"
    # execute if present bash $testCase/tearDown.sh

   # all other stuff 
}
done

if [ -e "./tearDown.sh" ];then
    bash "./tearDown.sh"
fi

# all other stuff

The setUp.sh scripts are optional and used to prepare scenarios
The tearDown.sh scripts are optional and used to remove scenarios, so you leave the system clean

from mishell.sh.

pkristian avatar pkristian commented on May 20, 2024

oh, thank you! i like this, so i should create TestAll.sh make more generic, aye? copy :)

from mishell.sh.

pkristian avatar pkristian commented on May 20, 2024

extended duplicate of #4

from mishell.sh.

pkristian avatar pkristian commented on May 20, 2024

i decidet this should be sole PR... :) thx @franiglesias ! :)

from mishell.sh.

pkristian avatar pkristian commented on May 20, 2024
  • setUp and TearDown
  • comprimed test remote
  • failing test diff

from mishell.sh.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.