| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- use strict;
- use warnings;
- use Test::More 'tests' => 12;
- #check status filters
- my @args = ($^X,qw{bin/testrail-runs --apiurl http://testrail.local --user "test@fake.fake" --password "fake" -j "TestProject" --mock});
- my $out = `@args`;
- is($? >> 8, 0, "Exit code OK looking for runs with passes");
- chomp $out;
- like($out,qr/^OtherOtherSuite\nTestingSuite\nFinalRun\nlockRun\nClosedRun$/,"Gets run correctly looking for passes");
- #check LIFO sort
- @args = ($^X,qw{bin/testrail-runs --apiurl http://testrail.local --user "test@fake.fake" --password "fake" -j "TestProject" --lifo --mock});
- $out = `@args`;
- is($? >> 8, 0, "Exit code OK looking for runs with passes");
- chomp $out;
- like($out,qr/^lockRun\nClosedRun\nTestingSuite\nFinalRun\nOtherOtherSuite$/,"LIFO sort works");
- #check milesort
- @args = ($^X,qw{bin/testrail-runs --apiurl http://testrail.local --user "test@fake.fake" --password "fake" -j "TestProject" --milesort --mock});
- $out = `@args`;
- is($? >> 8, 0, "Exit code OK looking for runs with passes");
- chomp $out;
- like($out,qr/^TestingSuite\nFinalRun\nlockRun\nClosedRun\nOtherOtherSuite$/,"milesort works");
- #check status filters
- @args = ($^X,qw{bin/testrail-runs --apiurl http://testrail.local --user "test@fake.fake" --password "fake" -j "TestProject" --mock --status passed});
- $out = `@args`;
- is($? >> 8, 0, "Exit code OK looking for runs with passes, which should fail to return results");
- chomp $out;
- is($out,'',"Gets no runs correctly looking for passes");
- #TODO check configs for real next time
- @args = ($^X,qw{bin/testrail-runs --apiurl http://testrail.local --user "test@fake.fake" --password "fake" -j "TestProject" --mock --config testConfig --config eee});
- $out = `@args`;
- is($? >> 8, 0, "Exit code OK looking for runs with passes");
- chomp $out;
- is($out,'',"Gets no run correctly when filtering by unassigned config");
- #help options
- @args = ($^X,qw{bin/testrail-runs --help});
- $out = `@args`;
- is($? >> 8, 0, "Exit code OK looking for help");
- like($out,qr/encoding of arguments/i,"Help output OK");
|