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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/usr/bin/env perl
use strict;
use warnings;
use RT::Test tests => 6;
use File::Temp qw/tempfile/;
use Encode;
use RT::Ticket;
my ( $url, $m ) = RT::Test->started_ok;
$m->default_header( 'Accept-Language' => "zh-cn" );
ok( $m->login, 'logged in' );
my $ticket_id;
my $template;
{
# test create message
$template = <<EOF;
===Create-Ticket: ticket1
Queue: General
Subject: test message
Status: new
Content:
ENDOFCONTENT
Due:
TimeEstimated: 100
TimeLeft: 100
FinalPriority: 90
EOF
$m->get_ok( $url . '/Tools/Offline.html' );
$m->submit_form(
form_name => 'TicketUpdate',
fields => { string => $template, },
button => 'UpdateTickets',
);
my $content = encode 'utf8', $m->content;
ok( $content =~ qr/申请单 #(\d+) 成功新增于 'General' 表单/, 'message is shown right' );
$ticket_id = $1;
}
{
# test update message
$template = <<EOF;
===Update-Ticket: 1
Subject: test message update
EOF
$m->get_ok( $url . '/Tools/Offline.html' );
$m->submit_form(
form_name => 'TicketUpdate',
fields => { string => $template, },
button => 'UpdateTickets',
);
my $content = encode 'utf8', $m->content;
ok(
$content =~
qr/主题\s*的值从\s*'test message'\s*改为\s*'test message update'/,
'subject is updated'
);
}
|