免费注册 查看新帖 |

Chinaunix

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

Test::Expect中expect—run的参数问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-13 17:32 |只看该作者 |倒序浏览
刚学习perl ,Test::Expect中expect—run的prompt到底是什么意思啊?参数该如何设置啊?高手帮帮忙,谢了!

论坛徽章:
0
2 [报告]
发表于 2009-04-14 10:31 |只看该作者
Think back to your early programming days, when the canonical example of accepting user input was building a calculator. In Perl, you may have written something like simplecalc.pl:


    #!perl

   

    use strict;

    use warnings;

   

    print "> ";

   

    while (<>)

    {

        chomp;

        last unless $_;

   

        my ($command, @args) = split( /\s+/, $_ );

   

        my $sub;

        unless ($sub = _ _PACKAGE_ _->can( $command ))

        {

            print "Unknown command '$command'\n> ";

            next;

        }

   

        $sub->(@args);

        print "> ";

    }

   

    sub add

    {

        my $result = 0;

   

        $result += $_ for @_;

        print join(" + " , @_ ), " = $result\n";

    }

   

    sub subtract

    {

        my $result = shift;

   

        print join(" - " , $result, @_ );

   

        $result -= $_ for
       print " = $result\n";

    }



Save the following test file as testcalc.t:


    #!perl

   

    use strict;

    use Test::More tests => 7;

    use Test::Expect;

   

    expect_run(

        command => "$^X simplecalc.pl",

        prompt  => '> ',

        quit    => "\n",

    );

   

    expect(    'add 1 2 3',    '1 + 2 + 3 = 6',  'adding three numbers'       );

    expect_send('subtract 1 2 3',                'subtract should work'       );

    expect_is(  '1 - 2 - 3 = -4',                '.. producing good results'  );

    expect_send('weird magic',                   'not dying on bad input'     );

    expect_like(qr/Unknown command 'weird/,      '... but giving an error'    );




Run it from the directory containing simplecalc.pl:


    $ prove testcalc.t

    testcalc....ok

    All tests successful.

    Files=1, Tests=7,  0 wallclock secs ( 0.27 cusr +  0.02 csys =  0.29 CPU)

论坛徽章:
0
3 [报告]
发表于 2009-04-14 10:33 |只看该作者
没人回答我 ~~~ 我自己找了点资料搞清楚了 ~~~ 传上来,希望对和我有同样疑惑的人一点帮助吧!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP