gpt4 book ai didi

perl - 测试::MockModule 声明 "method does not exist"

转载 作者:行者123 更新时间:2023-12-02 09:15:11 25 4
gpt4 key购买 nike

我尝试模拟 Net::Twitter 中的函数:

use strict;
use warnings;
use Test::MockModule;

my $mock = Test::MockModule->new('Net::Twitter');
$mock->redefine('update', sub {
# ...
});

但是当我运行这个时,我得到:

Net::Twitter::update does not exist! at wtf.pl line 8.

这是为什么?我如何才能真正模拟 Net::Twitter::update 函数?

最佳答案

错误消息意味着它找不到Net::Twitter::update来覆盖。这很清楚。问题是,为什么?

如果你看一下 Net::Twitter对象 Data::Printer ,您会发现确实没有明显的 update 方法。事实上,它甚至不是 Net::Twitter 类型的对象。

use Net::Twitter;
use Data::Printer;

my $t = Net::Twitter->new;
p $t;

在我安装了当前最新 Net::Twitter 的计算机上,它是一个 Net::Twitter_v4_01042_with__Legacy,这可能是一个动态创建的包。

Net::Twitter_v4_01042_with__Legacy  {
Parents Net::Twitter::Core
public methods (22) : apihost, apirealm, apiurl, arrayref_on_error, BUILD, DESTROY, has_error, http_code, http_message, is_list_member, is_list_subscriber, is_subscribed_list, meta, new, searchapiurl, trends, tvhost, tvrealm, tvurl, twittervision, update_twittervision, upload_url
private methods (5) : _clear_error, _error_return_val, _http_response, _parse_result, _twitter_error
internals: {
apirealm "Twitter API",
apiurl "https://api.twitter.com/1",
arrayref_on_error 0,
clientname "Perl Net::Twitter",
clienturl "http://search.cpan.org/dist/Net-Twitter/",
clientver 4.01042,
decode_html_entities 0,
_error_return_val undef,
_json_handler Cpanel::JSON::XS,
<<MOP>> Class::MOP::Class::Immutable::Moose::Meta::Class,
netrc_machine "api.twitter.com",
searchapiurl "https://search.twitter.com",
source "twitterpm",
ssl 1,
tvhost "twittervision.com:80",
tvrealm "Web Password",
tvurl "http://twittervision.com",
twittervision 0,
upload_url "https://upload.twitter.com/1",
useragent "Net::Twitter/4.01042 (Perl)",
useragent_args {},
useragent_class "LWP::UserAgent"
}
}

如果你尝试looking for a sub update in the entire Net::Twitter distribution ,你什么也找不到。它不是角色的一部分,它根本不存在。

但这并不意味着它不存在。我挖得更深一点,发现an update in Net::Twitter::Role::API::REST 。它是使用 twitter_api_method function from Net::Twitter::API 定义的。它做了很多事情,然后使用 Moose 的元层将该方法安装到某个类中 - 可能是我机器上的 Net::Twitter_v4_01042_with__Legacy - 甚至带来了自己的元方法类 Net::Twitter::Meta::Method

所以这是相当明显的原因 Test::MockModule找不到 Net::Twitter::update。它根本就从来没有

但是我们如何模拟它进行测试呢?

我相信最简单的方法(虽然肯定不是一个很好的方法)是覆盖它所在的包中的 update 。为此,您需要创建一个对象并进行检查。

use strict;
use warnings;
use Test::MockModule;
use Net::Twitter;

my $mock = Test::MockModule->new( ref( Net::Twitter->new ) );
$mock->redefine(
'update',
sub {
... # will die with 'unimplemented'
}
);

my $nt = Net::Twitter->new->update;

这段代码有点浪费,因为它需要创建一个对象只是为了检查它最终位于哪个包中,但它可以工作。

Unimplemented at /home/simbabque/code/scratch/scratch.pl line 236.

关于perl - 测试::MockModule 声明 "method does not exist",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47898527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com