Initial version of performance test
[scpubgit/stemmatology.git] / t / load-save-speed.t
CommitLineData
c4b7a40d 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Benchmark 'timethis';
7use JSON;
8use File::Path 'mkpath';
9
10use Text::Tradition;
11use Text::Tradition::Directory;
12use Test::More 'no_plan';
13
14## Using t/data/besoin.xml / t/data/besoin.dot as a large test example:
15my $test_name = 'besoin';
16# my $test_name = 'simple';
17
18## Data file for repeated benchmarks:
19my $benchmark_file = 't/data/load-save-benchmark.json';
20
21## SQL file (previously dumped KiokuDB) for testing tradition directory loading:
22my $load_sql = 't/data/speed_test_load.sql';
23
24## uuid to load from the above stored db:
25my $load_uuid = '7D0AA7C0-92C2-11E1-98B2-D7BDA89F4671';
26
27## Pass the git hash to identify this performance improvement, if you
28## want to save the results of this run. Pass nothing to just run a test
29## of the current code against the previous best.
30my $git_hash = shift;
31
32if($git_hash) {
33 diag "Will save results using $git_hash as a key";
34} else {
35 diag "No git hash passed in, just running test";
36}
37
38## Setup
39mkpath('t/var') if(!-d 't/var');
40
41my $tradition = Text::Tradition->new(
42 'input' => 'Self',
43 'file' => "t/data/${test_name}.xml"
44 ## smaller for testing the test!
45# 'input' => 'Tabular',
46# 'file' => 't/data/simple.txt',
47);
48$tradition->add_stemma(dotfile => "t/data/${test_name}.dot");
49
50#my $fh = File::Temp->new();
51#my $file = $fh->filename;
52#$fh->close;
53## use t/var so you can look at the results after if neccessary:
54
55my $load_db = 't/var/speed_test_load.db';
56unlink($load_db) if(-e $load_db);
57my $load_dsn = "dbi:SQLite:dbname=$load_db";
58## Prime db from .sql file:
59## ?? fails
60`sqlite3 $load_db < $load_sql`;
61
62my $save_db = 't/var/speed_test_save.db';
63unlink($save_db) if(-e $save_db);
64my $save_dsn = "dbi:SQLite:dbname=${save_db}";
65
66my $benchmark_data = load_benchmark($benchmark_file);
67
68my $test_save = sub {
69 unlink($save_db) if(-e $save_db);
70
71 my $dir = Text::Tradition::Directory->new(
72 dsn => $save_dsn,
73 extra_args => { create => 1 },
74 );
75 ## This seems to be a required magic incantation:
76 my $scope = $dir->new_scope;
77
78 ## save the tradition (with stemma) to the db:
79 my $uuid = $dir->save($tradition);
80# print STDERR "UUID: $uuid\n";
81
82};
83
84my $test_load = sub {
85 my $dir = Text::Tradition::Directory->new(
86 dsn => $save_dsn,
87 );
88
89 ## This seems to be a required magic incantation:
90 my $scope = $dir->new_scope;
91
92 my $tradition = $dir->tradition($load_uuid);
93};
94
95my $last_benchmark = $benchmark_data->[-1];
96## Benchmark current code:
97my $new_save_result = timethis(5, $test_save);
98
99ok($new_save_result->[1] + $new_save_result->[2] < $last_benchmark->{save_times}[1] + $last_benchmark->{save_times}[2], 'Saving to a Tradition Directory got faster');
100
101my $new_load_result = timethis(20, $test_load);
102
103ok($new_load_result->[1] + $new_load_result->[2] < $last_benchmark->{load_times}[1] + $last_benchmark->{load_times}[2], 'Loading from a Tradition Directory got faster');
104
105if($git_hash) {
106 push(@{ $benchmark_data }, {
107 git_hash => $git_hash,
108 load_times => $new_load_result,
109 save_times => $new_save_result,
110 });
111
112 save_benchmark($benchmark_data);
113}
114
115## -----------------------------------------------------------------------------
116
117sub load_benchmark {
118 my ($filename) = @_;
119
120 my $loaded_data = [];
121 if(-e $filename) {
122 local $/;
123 open( my $fh, '<', $filename ) || die "$!";
124 my $json_text = <$fh>;
125 $fh->close();
126 $loaded_data = decode_json( $json_text );
127 } else {
128 ## bare bones default table:
129 $loaded_data = [
130 {
131 git_hash => '',
132 load_times => [1000, 1000, 1000, 0, 0, 5],
133 save_times => [1000, 1000, 1000, 0, 0, 5],
134 }
135 ];
136 }
137
138 return $loaded_data;
139}
140
141sub save_benchmark {
142 my ($filename, $new_benchmarks) = @_;
143
144 my $json_text = encode_json($new_benchmarks);
145
146 open(my $fh, '>', $filename) || die "$!";
147 $fh->print($json_text);
148 $fh->close();
149}