如何在Perl中伪造STDIN?

前端之家收集整理的这篇文章主要介绍了如何在Perl中伪造STDIN?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我单元测试需要用户输入的组件。如何告诉 Test::More使用我预定义的一些输入,以便我不需要手动输入?

这就是我现在所说的:

use strict;
use warnings;
use Test::More;
use TestClass;

    *STDIN = "1\n";
    foreach my $file (@files)
    {

#this constructor asks for user input if it cannot find the file (1 is ignore);
    my $test = TestClass->new( file=> @files );

    isa_ok( $test,'TestClass');
    }


done_testing;

代码按enter键,但该函数正在检索0不为1;

解决方法

以下最小脚本似乎有效:
#!/usr/bin/perl

package TestClass;
use strict;
use warnings;

sub new {
    my $class = shift;
    return unless <STDIN> eq "1\n";
    bless {} => $class;
}

package main;

use strict;
use warnings;

use Test::More tests => 1;

{
    open my $stdin,'<',\ "1\n"
        or die "Cannot open STDIN to read from string: $!";
    local *STDIN = $stdin;
    my $test = TestClass->new;
    isa_ok( $test,'TestClass');
}

输出

C:\Temp> t
1..1
ok 1 - The object isa TestClass
原文链接:https://www.f2er.com/Perl/173146.html

猜你在找的Perl相关文章