-
Notifications
You must be signed in to change notification settings - Fork 97
/
auto_test.pl
189 lines (159 loc) · 3.95 KB
/
auto_test.pl
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/local/bin/perl
use strict;
use Cwd;
use vars qw($config_obj $project_obj $main_gui $splash $kh_version);
$kh_version = "3.x Tester";
BEGIN {
use Jcode;
require kh_lib::Jcode_kh if $] > 5.008 && eval 'require Encode::EUCJPMS';
# for Windows [1]
if ($^O eq 'MSWin32'){
# Cwd.pmの上書き
no warnings 'redefine';
sub Cwd::_win32_cwd {
if (defined &DynaLoader::boot_DynaLoader) {
$ENV{'PWD'} = Win32::GetCwd();
}
else { # miniperl
chomp($ENV{'PWD'} = `cd`);
}
$ENV{'PWD'} = Jcode->new($ENV{'PWD'},'sjis')->euc;
$ENV{'PWD'} =~ s:\\:/:g ;
$ENV{'PWD'} = Jcode->new($ENV{'PWD'},'euc')->sjis;
#print "hoge\n";
return $ENV{'PWD'};
};
*cwd = *Cwd::cwd = *Cwd::getcwd = *Cwd::fastcwd = *Cwd::fastgetcwd = *Cwd::_NT_cwd = \&Cwd::_win32_cwd;
use warnings 'redefine';
}
# モジュールのパスを追加
push @INC, cwd.'/kh_lib';
push @INC, cwd.'/plugin';
# for Windows [2]
if ($^O eq 'MSWin32'){
# コンソールを最小化
require Win32::Console;
Win32::Console->new->Title('Console of KH Coder');
if (defined($PerlApp::VERSION) && substr($PerlApp::VERSION,0,1) >= 7 ){
require Win32::API;
my $win = Win32::API->new(
'user32.dll',
'FindWindow',
'NP',
'N'
)->Call(
0,
"Console of KH Coder"
);
Win32::API->new(
'user32.dll',
'ShowWindow',
'NN',
'N'
)->Call(
$win,
2
);
}
# スプラッシュ
#require Tk::Splash;
#$splash = Tk::Splash->Show(
# Tk->findINC('kh_logo.bmp'),
# 400,
# 109,
# '',
#);
# TkをInvokeしないマルチスレッド用のスプラッシュ
require Tk::Splash;
require Win32::GUI::SplashScreen;
Win32::GUI::SplashScreen::Show(
-file => Tk->findINC('kh_logo.bmp'),
-mintime => 3,
);
}
# for Linux & Others
else {
push @INC, cwd.'/dummy_lib';
if ($] > 5.008){
require Tk::FBox;
require Tk::FBox_kh;
}
}
# 設定の読み込み
require kh_sysconfig;
$config_obj = kh_sysconfig->readin('./config/coder.ini',&cwd);
}
use Tk;
use mysql_ready;
use mysql_words;
use mysql_conc;
use kh_project;
use kh_projects;
use kh_morpho;
use gui_window;
# Windows版パッケージ用の初期化
if (
($::config_obj->os eq 'win32')
&& $::config_obj->all_in_one_pack
){
use kh_all_in_one;
kh_all_in_one->init;
}
# Rの初期化
use Statistics::R;
*Statistics::R::output_chk = sub {return 1};
if (
( length($::config_obj->r_path) && -e $::config_obj->r_path )
|| ( length($::config_obj->r_path) == 0 )
){
$::config_obj->{R} = Statistics::R->new(
r_bin => $::config_obj->r_path,
#r_dir => $::config_obj->r_dir,
log_dir => $::config_obj->{cwd}.'/config/R-bridge',
tmp_dir => $::config_obj->{cwd}.'/config/R-bridge',
);
}
if ($::config_obj->{R}){
$::config_obj->{R}->startR;
$::config_obj->{R}->output_chk(1);
} else {
$::config_obj->{R} = 0;
}
chdir ($::config_obj->{cwd});
# Workerスレッドの開始
use my_threads;
my_threads->init;
# GUIの開始
$main_gui = gui_window::main->open;
$main_gui->win_obj->bind(
'<Control-Key-g>',
\&test
);
&test;
MainLoop;
#--------------------#
# テスト用コード #
sub test{
use Cwd qw(cwd);
use lib cwd.'/auto_test/lib';
use kh_at;
use Benchmark;
print "Starting test procedures...\n";
open (STDOUT,">:encoding(UTF-8)", "stdout.txt") or die;
binmode STDOUT, ":encoding(UTF-8)";
my $t0 = new Benchmark;
kh_at::project_new->exec_test('project_new'); # テストファイル登録&前処理
#kh_at->open_test_project;
kh_at::pretreatment->exec_test('pretreatment'); # 前処理メニュー
kh_at::words->exec_test('words'); # 抽出語メニュー
kh_at::out_var->exec_test('out_var'); # 外部変数メニュー
kh_at::cod->exec_test('cod'); # コーディング
#kh_at::transf->exec_test('transf'); # テキストファイル
kh_at->close_test_project; # プロジェクトを閉じる
kh_at->delete_test_project; # プロジェクトを削除
my $t1 = new Benchmark;
close (STDOUT);
open(STDOUT,'>&STDERR') or die;
print "Tests complete: ",timestr(timediff($t1,$t0)),"\n";
}
MainLoop;