summaryrefslogtreecommitdiffstats
path: root/vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-09-15 12:24:53 +0000
committerArne Juul <arnej@yahooinc.com>2022-09-15 12:25:30 +0000
commit0a49fcd272499d99ad061e067325984ce90c937c (patch)
tree5caa202cb7a45efa2d07a2efa14d0aa3a2969645 /vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl
parent754926e273acdb87bc43449ffb11f06a40a65ed3 (diff)
remove superseded perl scripts
Diffstat (limited to 'vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl')
-rw-r--r--vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl65
1 files changed, 0 insertions, 65 deletions
diff --git a/vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl b/vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl
deleted file mode 100644
index 6e2ec20c712..00000000000
--- a/vespaclient/src/perl/test/Yahoo/Vespa/Bin/GetClusterStateTest.pl
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-use Test::More;
-use strict;
-use warnings;
-
-BEGIN { use_ok( 'Yahoo::Vespa::Bin::GetClusterState' ); }
-require_ok( 'Yahoo::Vespa::Bin::GetClusterState' );
-
-use TestUtils::VespaTest;
-use Yahoo::Vespa::Mocks::ClusterControllerMock;
-use Yahoo::Vespa::Mocks::VespaModelMock;
-
-# Set which application is called on assertRun / assertRunMatches calls
-setApplication( \&getClusterState );
-
-useColors(0);
-
-&testSimple();
-&testSyntaxPage();
-&testClusterDown();
-
-done_testing();
-
-exit(0);
-
-sub testSimple {
- my $stdout = <<EOS;
-
-Cluster books:
-books/storage/0: down
-books/storage/1: up
-
-Cluster music:
-music/distributor/0: down
-music/distributor/1: up
-music/storage/0: retired
-EOS
- assertRun("Default - no arguments", "", 0, $stdout, "");
-}
-
-sub testClusterDown {
- Yahoo::Vespa::Mocks::ClusterControllerMock::setClusterDown();
- Yahoo::Vespa::ClusterController::init();
- Yahoo::Vespa::Bin::GetClusterState::init();
- my $stdout = <<EOS;
-
-Cluster books:
-books/storage/0: down
-books/storage/1: up
-
-Cluster music is down. Too few nodes available.
-music/distributor/0: down
-music/distributor/1: up
-music/storage/0: retired
-EOS
- assertRun("Music cluster down", "", 0, $stdout, "");
-}
-
-sub testSyntaxPage {
- my $stdout = <<EOS;
-EOS
- my $pat = qr/^Get the cluster state of a given cluster.*Usage:.*GetClusterState.*Options.*--help.*/s;
- assertRunMatches("Syntax page", "--help", 1, $pat, qr/^$/);
-}