File: 02-Film.t

package info (click to toggle)
libclass-dbi-perl 0.96-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 388 kB
  • ctags: 229
  • sloc: perl: 1,933; makefile: 43
file content (338 lines) | stat: -rw-r--r-- 10,064 bytes parent folder | download
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
use strict;
use Test::More;
$| = 1;

BEGIN {
	eval "use DBD::SQLite";
	plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 90);
}

INIT {
	use lib 't/testlib';
	use Film;
}

ok(Film->CONSTRUCT, "Construct Film table");
ok(Film->can('db_Main'), 'set_db()');
is(Film->__driver, "SQLite", "Driver set correctly");

{
	my $nul = eval { Film->retrieve() };
	is $nul, undef, "Can't retrieve nothing";
	like $@, qr/./, "retrieve needs parameters";    # TODO fix this...
}

{
	eval { my $id = Film->id };
	like $@, qr/class method/, "Can't get id with no object";
}

{
	eval { my $id = Film->title };
	like $@, qr/class method/, "Can't get title with no object";
}

eval { my $duh = Film->create; };
like $@, qr/create needs a hashref/, "create needs a hashref";

my $btaste = Film->retrieve('Bad Taste');
isa_ok $btaste, 'Film';
is($btaste->Title,             'Bad Taste',     'Title() get');
is($btaste->Director,          'Peter Jackson', 'Director() get');
is($btaste->Rating,            'R',             'Rating() get');
is($btaste->NumExplodingSheep, 1,               'NumExplodingSheep() get');

{
	my $bt2 = Film->find_or_create(Title => 'Bad Taste');
	is $bt2->Director, $btaste->Director, "find_or_create";
	my @bt = Film->search(Title => 'Bad Taste');
	is @bt, 1, " doesn't create a new one";
}

ok my $gone = Film->find_or_create({
		Title             => 'Gone With The Wind',
		Director          => 'Bob Baggadonuts',
		Rating            => 'PG',
		NumExplodingSheep => 0
	}
	),
	"Add Gone With The Wind";
isa_ok $gone, 'Film';
ok $gone = Film->retrieve(Title => 'Gone With The Wind'),
	"Fetch it back again";
isa_ok $gone, 'Film';

# Shocking new footage found reveals bizarre Scarlet/sheep scene!
is($gone->NumExplodingSheep, 0, 'NumExplodingSheep() get again');
$gone->NumExplodingSheep(5);
is($gone->NumExplodingSheep, 5, 'NumExplodingSheep() set');
is($gone->numexplodingsheep, 5, 'numexplodingsheep() set');

is($gone->Rating, 'PG', 'Rating() get again');
$gone->Rating('NC-17');
is($gone->Rating, 'NC-17', 'Rating() set');
$gone->update;

{
	my @films = eval { Film->retrieve_all };
	is(@films, 2, "We have 2 films in total");
}

my $gone_copy = Film->retrieve('Gone With The Wind');
ok($gone->NumExplodingSheep == 5, 'update()');
ok($gone->Rating eq 'NC-17', 'update() again');

# Grab the 'Bladerunner' entry.
Film->create({
		Title    => 'Bladerunner',
		Director => 'Bob Ridley Scott',
		Rating   => 'R'
	});

my $blrunner = Film->retrieve('Bladerunner');
is(ref $blrunner, 'Film', 'retrieve() again');
is $blrunner->Title,    'Bladerunner',      "Correct title";
is $blrunner->Director, 'Bob Ridley Scott', " and Director";
is $blrunner->Rating,   'R',                " and Rating";
is $blrunner->NumExplodingSheep, undef, " and sheep";

# Make a copy of 'Bladerunner' and create an entry of the directors cut
my $blrunner_dc = $blrunner->copy({
		title  => "Bladerunner: Director's Cut",
		rating => "15",
	});
is(ref $blrunner_dc, 'Film', "copy() produces a film");
is($blrunner_dc->Title,    "Bladerunner: Director's Cut", 'Title correct');
is($blrunner_dc->Director, 'Bob Ridley Scott',            'Director correct');
is($blrunner_dc->Rating,   '15',                          'Rating correct');
is($blrunner_dc->NumExplodingSheep, undef, 'Sheep correct');

# Set up own SQL:
{
	Film->add_constructor(title_asc  => "title LIKE ? ORDER BY title");
	Film->add_constructor(title_desc => "title LIKE ? ORDER BY title DESC");

	{
		my @films = Film->title_asc("Bladerunner%");
		is @films, 2, "We have 2 Bladerunners";
		is $films[0]->Title, $blrunner->Title, "Ordered correctly";
	}
	{
		my @films = Film->title_desc("Bladerunner%");
		is @films, 2, "We have 2 Bladerunners";
		is $films[0]->Title, $blrunner_dc->Title, "Ordered correctly";
	}
}

# Multi-column search
{
	my @films = $blrunner->search_like(title => "Bladerunner%", rating => '15');
	is @films, 1, "Only one Bladerunner is a 15";
}

# Inline SQL
{
	my @films = Film->retrieve_from_sql("numexplodingsheep > 0 ORDER BY title");
	is @films, 2, "Inline SQL";
	is $films[0]->id, $btaste->id, "Correct film";
	is $films[1]->id, $gone->id,   "Correct film";
}

# Inline SQL removes WHERE
{
	my @films =
		Film->retrieve_from_sql(" WHErE numexplodingsheep > 0 ORDER BY title");
	is @films, 2, "Inline SQL";
	is $films[0]->id, $btaste->id, "Correct film";
	is $films[1]->id, $gone->id,   "Correct film";
}

eval {
	my $ishtar = Film->create({ Title => 'Ishtar', Director => 'Elaine May' });
	my $mandn =
		Film->create({ Title => 'Mikey and Nicky', Director => 'Elaine May' });
	my $new_leaf =
		Film->create({ Title => 'A New Leaf', Director => 'Elaine May' });
	is(Film->search(Director => 'Elaine May')->count,
		3, "3 Films by Elaine May");
	ok(Film->retrieve('Ishtar')->delete,
		"Ishtar doesn't deserve an entry any more");
	ok(!Film->retrieve('Ishtar'), 'Ishtar no longer there');
	{
		my $deprecated = 0;
		local $SIG{__WARN__} = sub { $deprecated++ if $_[0] =~ /deprecated/ };
		ok(
			Film->delete(Director => 'Elaine May'),
			"In fact, delete all films by Elaine May"
		);
		is(Film->search(Director => 'Elaine May')->count,
			0, "0 Films by Elaine May");
		is $deprecated, 1, "Got a deprecated warning";
	}
};
is $@, '', "No problems with deletes";

# Find all films which have a rating of NC-17.
my @films = Film->search('Rating', 'NC-17');
is(scalar @films, 1, ' search returns one film');
is($films[0]->id, $gone->id, ' ... the correct one');

# Find all films which were directed by Bob
@films = Film->search_like('Director', 'Bob %');
is(scalar @films, 3, ' search_like returns 3 films');
ok(
	eq_array(
		[ sort map { $_->id } @films ],
		[ sort map { $_->id } $blrunner_dc, $gone, $blrunner ]
	),
	'the correct ones'
);

# Find Ridley Scott films which don't have vomit
@films =
	Film->search(numExplodingSheep => undef, Director => 'Bob Ridley Scott');
is(scalar @films, 2, ' search where attribute is null returns 2 films');
ok(
	eq_array(
		[ sort map { $_->id } @films ],
		[ sort map { $_->id } $blrunner_dc, $blrunner ]
	),
	'the correct ones'
);

# Test that a disconnect doesnt harm anything.
Film->db_Main->disconnect;
@films = Film->search({ Rating => 'NC-17' });
ok(@films == 1 && $films[0]->id eq $gone->id, 'auto reconnection');

# Test discard_changes().
my $orig_director = $btaste->Director;
$btaste->Director('Lenny Bruce');
is($btaste->Director, 'Lenny Bruce', 'set new Director');
$btaste->discard_changes;
is($btaste->Director, $orig_director, 'discard_changes()');

{
	Film->autoupdate(1);
	my $btaste2 = Film->retrieve($btaste->id);
	$btaste->NumExplodingSheep(18);
	my @warnings;
	local $SIG{__WARN__} = sub { push @warnings, @_; };
	{

		# unhook from live object cache, so next one is not from cache
		$btaste2->remove_from_object_index;
		my $btaste3 = Film->retrieve($btaste->id);
		is $btaste3->NumExplodingSheep, 18, "Class based AutoCommit";
		$btaste3->autoupdate(0);    # obj a/c should override class a/c
		is @warnings, 0, "No warnings so far";
		$btaste3->NumExplodingSheep(13);
	}
	is @warnings, 1, "DESTROY without update warns";
	Film->autoupdate(0);
}

{
	$btaste->autoupdate(1);
	$btaste->NumExplodingSheep(32);
	my $btaste2 = Film->retrieve($btaste->id);
	is $btaste2->NumExplodingSheep, 32, "Object based AutoCommit";
	$btaste->autoupdate(0);
}

# Primary key of 0
{
	my $zero = Film->create({ Title => 0, Rating => "U" });
	ok defined $zero, "Create 0";
	ok my $ret = Film->retrieve(0), "Retrieve 0";
	is $ret->Title,  0,   "Title OK";
	is $ret->Rating, "U", "Rating OK";
}

# Change after_update policy
{
	my $bt = Film->retrieve($btaste->id);
	$bt->autoupdate(1);

	$bt->rating("17");
	ok !$bt->_attribute_exists('rating'), "changed column needs reloaded";
	ok $bt->_attribute_exists('title'), "but we still have the title";

	# Don't re-load
	$bt->add_trigger(
		after_update => sub {
			my ($self, %args) = @_;
			my $discard_columns = $args{discard_columns};
			@$discard_columns = qw/title/;
		});
	$bt->rating("19");
	ok $bt->_attribute_exists('rating'), "changed column needs reloaded";
	ok !$bt->_attribute_exists('title'), "but no longer have the title";
}

# Make sure that we can have other accessors. (Bugfix in 0.28)
if (0) {
	Film->mk_accessors(qw/temp1 temp2/);
	my $blrunner = Film->retrieve('Bladerunner');
	$blrunner->temp1("Foo");
	$blrunner->NumExplodingSheep(2);
	eval { $blrunner->update };
	ok(!$@, "Other accessors");
}

# overloading
{
	is "$blrunner", "Bladerunner", "stringify";

	ok(Film->columns(Stringify => 'rating'), "Can change stringify column");
	is "$blrunner", "R", "And still stringifies correctly";

	ok(
		Film->columns(Stringify => qw/title rating/),
		"Can have multiple stringify columns"
	);
	is "$blrunner", "Bladerunner/R", "And still stringifies correctly";

	no warnings 'once';
	local *Film::stringify_self = sub { join ":", $_[0]->title, $_[0]->rating };
	is "$blrunner", "Bladerunner:R", "Provide stringify_self()";
}

{
	{
		ok my $byebye = DeletingFilm->create({
				Title  => 'Goodbye Norma Jean',
				Rating => 'PG',
			}
			),
			"Add a deleting Film";

		isa_ok $byebye, 'DeletingFilm';
		isa_ok $byebye, 'Film';
		ok(Film->retrieve('Goodbye Norma Jean'), "Fetch it back again");
	}
	my $film;
	eval { $film = Film->retrieve('Goodbye Norma Jean') };
	ok !$film, "It destroys itself";
}

SKIP: {
	skip "Scalar::Util::weaken not available", 3
		if !$Class::DBI::Weaken_Is_Available;

	# my bad taste is your bad taste
	my $btaste  = Film->retrieve('Bad Taste');
	my $btaste2 = Film->retrieve('Bad Taste');
	is Scalar::Util::refaddr($btaste), Scalar::Util::refaddr($btaste2),
		"Retrieving twice gives ref to same object";

	$btaste2->remove_from_object_index;
	my $btaste3 = Film->retrieve('Bad Taste');
	isnt Scalar::Util::refaddr($btaste2), Scalar::Util::refaddr($btaste3),
		"Removing from object_index and retrieving again gives new object";

	$btaste3->clear_object_index;
	my $btaste4 = Film->retrieve('Bad Taste');
	isnt Scalar::Util::refaddr($btaste2), Scalar::Util::refaddr($btaste4),
		"Clearing cache and retrieving again gives new object";
}