免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1560 | 回复: 2
打印 上一主题 下一主题

誰帮我介绍下shunit [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-04-17 22:40 |只看该作者 |倒序浏览
誰帮我介绍下shunit ,或者给我-。-点资料。。。。。。

论坛徽章:
3
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:51:162015年亚洲杯之阿曼
日期:2015-04-07 20:00:59
2 [报告]
发表于 2012-04-18 10:59 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
3 [报告]
发表于 2012-05-15 14:07 |只看该作者
Here comes a unit testing framework for Bourne shell code similar to junit framework for java. Lets digest it.

1) Download shunit framework from here  http://sourceforge.net/projects/ ... it-1.5.zip/download

2) Untar this downloaded framework in any directory. I l use "/home" directory

3) Set a variable SHUNIT_HOME that points to the directory where ShUnit's files are. E.g., add 'export SHUNIT_HOME=/home/ShUnit'

4) Lets create a simple script "print_something" which will print something. You can create this script in /home folder too.

#!/bin/sh
# print_something - a testable script
print_something()
{
    echo "$1"
}

invalid_print_something()
{
    echo "nothinggggg"
}

Here, method  print_something will print the parameter passed to it. Method invalid_print_something will print "nothinggggg" always.

5) To unit test this script we need to test the functionality of the above two functions. Lets create a test script

#!/bin/sh
# print_something.test - unit tests for print_something
. "$SHUNIT_HOME/shUnit"

# Include script to be tested
. ./print_something.sh

TestScriptExists()
{
shuNonZeroFile <path of file to test>
}

TestPrintSomething()
{
    EXPECTED="this is a test"
    RESULT=`print_something "$EXPECTED"`
    test "${EXPECTED}" = "${RESULT}"
    shuAssert "Test print_something" $?
}

TestInvalidPrintSomething()
{
    EXPECTED="this is a test"
    RESULT=`invalid_print_something "$EXPECTED"`
    test "${EXPECTED}" = "${RESULT}"
    shuAssert "Test invalid print_something" $?
}

InitFunction()
{
    shuRegest TestScriptExists
    shuRegTest TestPrintSomething
    shuRegTest TestInvalidPrintSomething
}

shuStart InitFunction



Lets see this test script step by step

# print_something.test - unit tests for print_something
. "$SHUNIT_HOME/shUnit"

We include shunit from frmaework

# Include script to be tested
. ./print_something.sh

Include script to be tested

TestPrintSomething()
{
    EXPECTED="this is a first test"
    RESULT=`print_something "$EXPECTED"`
    test "${EXPECTED}" = "${RESULT}"
    shuAssert "Test print_something" $?
}

This method intern  calls print_something method of print_something script and tallys the expected result.
Other method works in similar way

InitFunction()
{
    shuRegest TestScriptExists
    shuRegTest TestPrintSomething
    shuRegTest TestInvalidPrintSomething
}

Call out test methods
Call "TestScriptExists" method first to check that script exists.

shuStart InitFunction

Call  InitFunction as starting function



6) Expecting files print_something.sh,  print_something_test.sh in same directory, We now run our test script

[root@sidd siddhesh]# sh print_something_test.sh

****** print_something_test.sh ******
2 tests to run:
    Test 1: TestPrintSomething    .
    Test 2: TestInvalidPrintSomething    E
      "Test invalid print_something" failed.

2 tests run.
  1 test succeeded.
  1 test failed.

7) Lets see some more properties of SHUNIT's

We saw functionality of "shuAssert "Test invalid print_something" $?"

it will pass and display message if $? turns out to be ZERO. What if we want to test few negative things. In this case will use

shuDeny "I am negative test case" $?

Here, Test will pass if value of $? comes out as 1

Following method is executed at the begining of the test script file

shuSetUp()
{
   // Create your directories,change file permissions etc etc
}

9) Following method is executed at the end of the test script file

shuTearDown()
{
   // Delete your directories,change file permissions etc etc
}

10) We have used  shuassert like this
shuassert <statement> $?
This will pass if $? is 0
We can use 'shuDeny ' which passes if $? is 1.
11) I dont think mocking anything will be difficult task with shunits. I havent tried it out yet ..Lets see..

but as of now CHEERS.. Happy testing !!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP