[Bast-commits] r5042 - DBIx-Class/0.08/trunk/t
ribasushi at dev.catalyst.perl.org
ribasushi at dev.catalyst.perl.org
Sat Nov 1 20:58:08 GMT 2008
Author: ribasushi
Date: 2008-11-01 20:58:07 +0000 (Sat, 01 Nov 2008)
New Revision: 5042
Modified:
DBIx-Class/0.08/trunk/t/64db.t
Log:
Augment commit r5037 - the column_info feature on SQLite is not buggy but partially unimplemented
Modified: DBIx-Class/0.08/trunk/t/64db.t
===================================================================
--- DBIx-Class/0.08/trunk/t/64db.t 2008-11-01 20:00:02 UTC (rev 5041)
+++ DBIx-Class/0.08/trunk/t/64db.t 2008-11-01 20:58:07 UTC (rev 5042)
@@ -35,25 +35,23 @@
is($artist, undef, "Rollback ok");
is_deeply (
- get_storage_column_info ($schema->storage, 'collection'),
+ get_storage_column_info ($schema->storage, 'collection', qw/size is_nullable/),
{
collectionid => {
data_type => 'INTEGER',
- is_nullable => 0,
},
name => {
data_type => 'varchar',
- is_nullable => 0,
},
},
- 'Correctly retrieve column info (all columns non-nullable)'
+ 'Correctly retrieve column info (no size or is_nullable)'
);
TODO: {
local $TODO = 'All current versions of SQLite seem to mis-report is_nullable';
is_deeply (
- get_storage_column_info ($schema->storage, 'artist'),
+ get_storage_column_info ($schema->storage, 'artist', qw/size/),
{
'artistid' => {
'data_type' => 'INTEGER',
@@ -73,18 +71,23 @@
};
+# Depending on test we need to strip away certain column info.
+# - SQLite is known to report the size differently from release to release
+# - Current DBD::SQLite versions do not implement NULLABLE
+# - Some SQLite releases report stuff that isn't there as undef
+
sub get_storage_column_info {
- my ($storage, $table) = @_;
+ my ($storage, $table, @ignore) = @_;
my $type_info = $storage->columns_info_for($table);
- # I know this is gross but SQLite reports the size differently from release
- # to release. At least this way the test still passes.
- # Also it seems that some SQLite releases report stuff that isn't there as
- # undef. So strip them out.
for my $col (keys %$type_info) {
for my $type (keys %{$type_info->{$col}}) {
- if ($type eq 'size' or not defined $type_info->{$col}{$type} ) {
+ if (
+ grep { $type eq $_ } (@ignore)
+ or
+ not defined $type_info->{$col}{$type}
+ ) {
delete $type_info->{$col}{$type};
}
}
More information about the Bast-commits
mailing list