only add rels once when seen repeatedly
[dbsrgits/DBIx-Class.git] / t / dq / remap.t
CommitLineData
1f005975 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6use Test::Warn;
7use lib qw(t/lib);
8use Data::Query::ExprDeclare;
9use Data::Query::ExprHelpers;
10use DBICTest;
11use DBIC::SqlMakerTest;
12
13my $schema = DBICTest->init_schema();
14
15$schema->source($_)->resultset_class('DBIx::Class::ResultSet::WithDQMethods')
16 for qw(CD Tag);
17
18my $cds = $schema->resultset('CD');
19
0f900f81 20throws_ok {
21 $cds->_remap_identifiers(Identifier('name'))
22} qr/Invalid name on me: name/;
23
1f005975 24is_deeply(
0f900f81 25 [ $cds->_remap_identifiers(Identifier('title')) ],
26 [ Identifier('me', 'title'), [] ],
1f005975 27 'Remap column on me'
28);
29
30is_deeply(
31 [ $cds->_remap_identifiers(Identifier('artist', 'name')) ],
32 [ Identifier('artist', 'name'), [ { artist => {} } ] ],
33 'Remap column on rel'
34);
35
36is_deeply(
37 [ $cds->search({}, { join => { single_track => { cd => 'artist' } } })
38 ->_remap_identifiers(Identifier('artist', 'name')) ],
39 [ Identifier('artist_2', 'name'), [ { artist => {} } ] ],
40 'Remap column on rel with re-alias'
41);
42
0f900f81 43is_deeply(
44 [ $cds->_remap_identifiers(Identifier('artist_id')) ],
45 [ Identifier('me', 'artist'), [] ],
46 'Remap column w/column name rename'
47);
48
49my $double_name = expr { $_->artist->name == $_->artist->name }->{expr};
50
51is_deeply(
52 [ $cds->_remap_identifiers($double_name) ],
53 [ $double_name, [ { artist => {} } ] ],
54 'Remap column on rel only adds rel once'
55);
56
1f005975 57done_testing;