Slovo

 view release on metacpan or  search on metacpan

t/012_cgi_hosting.t  view on Meta::CPAN

For example:
    export TEST_AUTHOR=1
    export SLOVO_DOM="xn--b1arjbl.xn--90ae"
    export SLOVO_DOCUMENT_ROOT="\$HOME/opt/\$SLOVO_DOM"

Add a record to your /etc/hosts file, for example:
127.0.1.1	dev.xn--b1arjbl.xn--90ae www.xn--b1arjbl.xn--90ae qa.xn--b1arjbl.xn--90ae

Configure a virtual host in Apache2 with document root \$SLOVO_DOCUMENT_ROOT
and run this test.
NOTE: You may need to use `sudo` to delete existng files created by Apache.

See example domain configuration at the end of this test file:
${\ __FILE__}.
'
  );
}

my $install_dir = "$ENV{SLOVO_DOCUMENT_ROOT}/slovo";
my $t           = Test::Mojo->with_roles('+Slovo')->install(

# from => to
  "$Bin/.." => $install_dir,

  # Directories permissions - you need to have enabled mod_suexec and the
  # $install dir to be under the mentioned on the first line directory (e.g.
  # /home/berov/www) in the suexec configuration file (e.g
  # /etc/apache/suexec/www-data)
  0755
)->new('Slovo');
my $app     = $t->app;
my $moniker = $app->moniker;
my $mode    = $app->mode;
my $home    = $app->home;
note $home;

my $Deploy = sub {
  my $buffer = '';
  {
    open my $handle, '>', \$buffer;
    local *STDOUT = $handle;

    $app->commands->run(generate => 'novy_dom', '--name' => $ENV{SLOVO_DOM},);
    $app->commands->run(generate => 'cgi_script');
    $app->commands->run(generate => 'a2htaccess');
    note $buffer;

  }
  cmp_ok($home, 'eq', $install_dir, 'proper installation directory');
  like $buffer => qr/mkdir.+\/$ENV{SLOVO_DOM}/mx => 'domain folder created';
  like $buffer => qr|write.+/.+slovo.cgi|mx      => 'cgi_script created';
  my ($cgi_file) = $buffer =~ m|write.+($install_dir/slovo\.cgi)|;
  ok -f $cgi_file => "$cgi_file exists";
  like $buffer => qr/(?:write|exist).+\/.htaccess/ => '.htaccess created';
  my ($hta_file)
    = $buffer =~ m"(?:write|exist|chmod)\]\s+($ENV{SLOVO_DOCUMENT_ROOT}/.htaccess)";
  ok -f $hta_file => "$hta_file exists";
};

my $dev_dom = "http://dev."
  . (join '.', map { punycode_decode $_= s/xn--//r } split m'\.', $ENV{SLOVO_DOM});
note $dev_dom;
my $htaccess_default = sub {

  # Very first call may fail
  $t->get_ok("$dev_dom");

  # DirectoryIndex
  $t->get_ok("$dev_dom")->status_is(200)
    ->text_is('#content-wrapper h1' => 'Добре дошли!', 'right h1')
    ->text_is('title'               => 'Добре дошли!', 'right title');

  # SCRIPT_NAME
  $t->get_ok("$dev_dom/$moniker/$moniker.cgi")->status_is(200)
    ->text_is('#content-wrapper h1' => 'Добре дошли!', 'right h1')
    ->text_is('title'               => 'Добре дошли!', 'right title');

  # ErrorDocument
  $t->get_ok("$dev_dom/alabalanica.html")->status_is(404)
    ->text_is('#content-wrapper h1' => 'Страницата не е намерена', 'right h1')
    ->text_is('title'               => 'Страницата не е намерена', 'right title');
};
my $RewriteRules = sub {

  # RewriteCond %{REQUEST_FILENAME} favicon.ico [NC]
  # RewriteRule .* - [END]
  $t->get_ok("$dev_dom/favicon.ico")->status_is(200);

  # Do not apply rules when requesting "<%=$cgi_script%>"
  #RewriteCond %{SCRIPT_FILENAME} <%=$cgi_script%> [NC]
  #RewriteRule .* - [NE,NS,END]
  $t->get_ok("$dev_dom/$moniker/$moniker.cgi")->status_is(200)
    ->text_is('#content-wrapper h1' => 'Добре дошли!', 'right h1')
    ->text_is('title'               => 'Добре дошли!', 'right title');

  # Redirect all requests for Slovo static files to respective domain's public/ directory.
  # /css/fonts.css -> /domove/t.com/public/css/fonts.css
  #RewriteCond %{REQUEST_FILENAME} !-f
  #RewriteCond %{REQUEST_FILENAME} !-d
  # Match xn--b1arjbl.xn--90ae out of www.xn--b1arjbl.xn--90ae
  #RewriteCond %{HTTP_HOST} ([\w\-]+.[\w\-]+)$
  #RewriteRule ^((?:css|img|js|fonts)/.+)$  /<%=$moniker%>/domove/%1/public/$1 [NE,END]
  $t->get_ok("$dev_dom/css/site.css")->status_is(200)
    ->content_like(qr'Body CSS', 'right CSS')->content_type_is('text/css');

# t.com/about-en-us.html becomes t.com/domove/t.com/public/cached/about-en-us.html
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{HTTP_HOST} ([\w\-]+.[\w\-]+)$
#RewriteRule ^(.+(?!\.cgi).+\.html)$  /<%=$moniker%>/domove/%1/public/cached/$1 [NE,NS,END]
  $t->get_ok("$dev_dom/ѿносно.bg-bg.html")->status_is(200)
    ->text_is('#content-wrapper h1' => 'Ѿносно', 'right h1')
    ->text_is('title'               => 'Ѿносно', 'right title');

  # GET /коренъ.bg-bg.html
  $t->get_ok("$dev_dom/коренъ.bg-bg.html")->status_is(200)
    ->text_is('#content-wrapper h1' => 'Добре дошли!', 'right h1')
    ->text_is('title'               => 'Добре дошли!', 'right title');
};
my $POST = sub {
  $t->login_ok('', '', $dev_dom);



( run in 0.676 second using v1.01-cache-2.11-cpan-71847e10f99 )