File: 33-is_locked.t

package info (click to toggle)
libmediawiki-bot-perl 5.007000-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 656 kB
  • sloc: perl: 1,992; makefile: 5
file content (25 lines) | stat: -rw-r--r-- 858 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use strict;
use warnings;
use Test::RequiresInternet 'test.wikipedia.org' => 80;
use Test::More tests => 2;

use MediaWiki::Bot;
my $t = __FILE__;

my $bot = MediaWiki::Bot->new({
    agent   => "MediaWiki::Bot tests (https://metacpan.org/MediaWiki::Bot; $t)",
    host    => 'test.wikipedia.org',
});

TODO: {
    todo_skip 'is_locked not implemented yet', 2 unless $bot->can('is_locked');

    # Jimbo is almost certainly not locked right now
    my $result = $bot->is_locked('Jimbo Wales');
    is($result, 0,      'current locks');

    # A random old account I chose - it will probably be locked forever
    # 23:44, 4 March 2009 Mike.lifeguard (talk | contribs) locked global account "User:PLEASE STOP BLOCKING@global" ‎ (inappropriate username)
    $result = $bot->is_locked('User:PLEASE STOP BLOCKING');
    is($result, 1,      'current locks');
}