DBD-SQLeet

 view release on metacpan or  search on metacpan

t/33_non_latin_path.t  view on Meta::CPAN

# currently fails on Windows

use strict;

BEGIN {
  $|  = 1;
  $^W = 1;
}

use lib "t/lib";
use SQLeetTest;
use Test::More;
BEGIN {
  if ( $] >= 5.008005 ) {
    plan( tests => 2 + 12 * (($^O eq 'cygwin') ? 2 : 4) );
  } else {
    plan( skip_all => 'Unicode is not supported before 5.8.5' );
  }
}
#use Test::NoWarnings;
use File::Temp ();
use File::Spec::Functions ':ALL';

my $dir = File::Temp::tempdir( CLEANUP => 1 );
foreach my $subdir ( 'longascii', 'adatb�zis', 'name with spaces', '��� ������') {
  if ($^O eq 'cygwin') {
    next if (($subdir eq 'adatb�zis') || ($subdir eq '��� ������'));
  }
  # rt48048: don't need to "use utf8" nor "require utf8"
  utf8::upgrade($subdir);
  ok(
    mkdir(catdir($dir, $subdir)),
    "$subdir created",
  );

  # Open the database
  my $dbfile = catfile($dir, $subdir, 'db.db');
  eval {
    my $dbh = DBI->connect("dbi:SQLeet:dbname=$dbfile", undef, undef, {
      RaiseError => 1,
      PrintError => 0,
    } );
    isa_ok( $dbh, 'DBI::db' );
  };
  is( $@, '', "Could connect to database in $subdir" );
  diag( $@ ) if $@;

  # Reopen the database
  eval {
    my $dbh = DBI->connect("dbi:SQLeet:dbname=$dbfile", undef, undef, {
      RaiseError => 1,
      PrintError => 0,
    } );
    isa_ok( $dbh, 'DBI::db' );
  };
  is( $@, '', "Could connect to database in $subdir" );
  diag( $@ ) if $@;

  unlink(_path($dbfile))  if -e _path($dbfile);

  # Repeat with the unicode flag on
  my $ufile = $dbfile;
  eval {
    my $dbh = DBI->connect("dbi:SQLeet:dbname=$dbfile", undef, undef, {
      RaiseError => 1,
      PrintError => 0,
      sqlite_unicode    => 1,
    } );
    isa_ok( $dbh, 'DBI::db' );
  };
  is( $@, '', "Could connect to database in $subdir" );
  diag( $@ ) if $@;

  # Reopen the database
  eval {
    my $dbh = DBI->connect("dbi:SQLeet:dbname=$dbfile", undef, undef, {
      RaiseError => 1,
      PrintError => 0,
      sqlite_unicode    => 1,
    } );
    isa_ok( $dbh, 'DBI::db' );
  };
  is( $@, '', "Could connect to database in $subdir" );
  diag( $@ ) if $@;

  unlink(_path($ufile))  if -e _path($ufile);

  # when the name of the database file has non-latin characters
  my $dbfilex = catfile($dir, "$subdir.db");
  eval {
    DBI->connect("dbi:SQLeet:dbname=$dbfilex", "", "", {RaiseError => 1, PrintError => 0});
  };
  ok(!$@, "Could connect to database in $dbfilex") or diag $@;
  ok -f _path($dbfilex), "file exists: "._path($dbfilex)." ($dbfilex)";

  # Reopen the database
  eval {
    DBI->connect("dbi:SQLeet:dbname=$dbfilex", "", "", {RaiseError => 1, PrintError => 0});
  };
  ok(!$@, "Could connect to database in $dbfilex") or diag $@;

  unlink(_path($dbfilex))  if -e _path($dbfilex);
}


# connect to an empty filename - sqlite will create a tempfile
eval {
  my $dbh = DBI->connect("dbi:SQLeet:dbname=", undef, undef, {
    RaiseError => 1,
    PrintError => 0,
  } );
  isa_ok( $dbh, 'DBI::db' );
};
is( $@, '', "Could connect to temp database (empty filename)" );
diag( $@ ) if $@;




sub _path {  # copied from DBD::SQLeet::connect
  my $path = shift;

  if ($^O =~ /MSWin32/) {
    require Win32;
    require File::Basename;

    my ($file, $dir, $suffix) = File::Basename::fileparse($path);
    my $short = Win32::GetShortPathName($path);
    if ( $short && -f $short ) {
      # Existing files will work directly.
      $path = $short;
    } elsif ( -d $dir ) {
      $path = join '', grep { defined } Win32::GetShortPathName($dir), $file, $suffix;
    }
  }
  return $path;
}



( run in 2.301 seconds using v1.01-cache-2.11-cpan-5735350b133 )