| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #! /usr/bin/perl
- use strict;
- use warnings;
- use Cwd qw/abs_path/;
- use FindBin;
- # We can only dzil from the root of the repository.
- my $this_folder = $FindBin::Bin . '/../../'; # t/bin/../../
- my $repo_root = abs_path($this_folder) . '/';
- reset_env();
- start_server();
- my $built_lib = glob('Selenium-Remote-Driver-*/lib');
- if (not defined $built_lib) {
- print ' Building a dist.';
- print `cd $repo_root && dzil build`;
- }
- # If built_lib wasn't around in the first place, we'll have to glob
- # for it again.
- $built_lib = $repo_root . ($built_lib || glob('Selenium-Remote-Driver-*/lib'));
- if ($^O eq 'linux') {
- print "Headless and need a webdriver server started? Try\n\n\tDISPLAY=:1 xvfb-run --auto-servernum java -jar /usr/lib/node_modules/protractor/selenium/selenium-server-standalone-2.42.2.jar\n\n";
- }
- my $export = $^O eq 'MSWin32' ? 'set' : 'export';
- my $wait = $^O eq 'MSWin32' ? 'START /WAIT' : '';
- print `$export WD_MOCKING_RECORD=1 && cd $repo_root && prove -I$built_lib -rv t/`;
- reset_env();
- sub start_server {
- if ($^O eq 'MSWin32') {
- system('start "TEMP_HTTP_SERVER" /MIN perl ' . $repo_root . 't/http-server.pl');
- }
- else {
- system('perl ' . $repo_root . 't/http-server.pl > /dev/null &');
- }
- }
- sub kill_server {
- if ($^O eq 'MSWin32') {
- system("taskkill /FI \"WINDOWTITLE eq TEMP_HTTP_SERVER\"");
- }
- else {
- `ps aux | grep [h]ttp-server\.pl | awk '{print \$2}' | xargs kill`;
- }
- }
- sub reset_env {
- if (@ARGV && $ARGV[0] eq 'reset') {
- print 'Cleaning. ';
- `cd $repo_root && dzil clean`;
- }
- print 'Taking out any existing servers. ';
- kill_server();
- }
|