123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- // Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #include <cstddef>
- #include <stdint.h>
- #include <string>
- #include <gtest/gtest.h>
- #include "../command_options.h"
- #include "exceptions/exceptions.h"
- using namespace std;
- using namespace isc;
- using namespace isc::perfdhcp;
- /// \brief Test Fixture Class
- ///
- /// This test fixture class is used to perform
- /// unit tests on perfdhcp CommandOptions class.
- class CommandOptionsTest : public virtual ::testing::Test
- {
- public:
- /// \brief Default Constructor
- CommandOptionsTest() { }
- protected:
- /// \brief Parse command line and cleanup
- ///
- /// The method tokenizes command line to array of C-strings,
- /// parses arguments using CommandOptions class to set
- /// its data members and de-allocates array of C-strings.
- ///
- /// \param cmdline Command line to parse
- /// \throws std::bad allocation if tokenization failed
- void process(const std::string& cmdline) {
- CommandOptions& opt = CommandOptions::instance();
- int argc = 0;
- char** argv = tokenizeString(cmdline, &argc);
- opt.reset();
- opt.parse(argc, argv);
- for(int i = 0; i < argc; ++i) {
- free(argv[i]);
- argv[i] = NULL;
- }
- free(argv);
- }
- /// \brief Check default initialized values
- ///
- /// Check if initialized values are correct
- void checkDefaults() {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp");
- EXPECT_EQ(4, opt.getIpVersion());
- EXPECT_EQ(CommandOptions::DORA_SARR, opt.getExchangeMode());
- EXPECT_EQ(0, opt.getRate());
- EXPECT_EQ(0, opt.getReportDelay());
- EXPECT_EQ(0, opt.getClientsNum());
- // default mac
- uint8_t mac[6] = { 0x00, 0x0C, 0x01, 0x02, 0x03, 0x04 };
- std::vector<uint8_t> v1 = opt.getMacPrefix();
- ASSERT_EQ(6, v1.size());
- EXPECT_TRUE(std::equal(v1.begin(), v1.end(), mac));
- EXPECT_EQ(0, opt.getBase().size());
- EXPECT_EQ(0, opt.getNumRequests().size());
- EXPECT_EQ(0, opt.getPeriod());
- for (int i = 0; i < opt.getDropTime().size(); ++i) {
- EXPECT_DOUBLE_EQ(1, opt.getDropTime()[i]);
- }
- ASSERT_EQ(opt.getMaxDrop().size(), opt.getMaxDropPercentage().size());
- for (int i = 0; i < opt.getMaxDrop().size(); ++i) {
- EXPECT_EQ(0, opt.getMaxDrop()[i]);
- EXPECT_EQ(0, opt.getMaxDropPercentage()[i]);
- }
- EXPECT_EQ("", opt.getLocalName());
- EXPECT_FALSE(opt.isInterface());
- EXPECT_EQ(0, opt.getPreload());
- EXPECT_EQ(1, opt.getAggressivity());
- EXPECT_EQ(0, opt.getLocalPort());
- EXPECT_FALSE(opt.isSeeded());
- EXPECT_EQ(0, opt.getSeed());
- EXPECT_FALSE(opt.isBroadcast());
- EXPECT_FALSE(opt.isRapidCommit());
- EXPECT_FALSE(opt.isUseFirst());
- EXPECT_EQ(0, opt.getTemplateFiles().size());
- EXPECT_EQ(0, opt.getTransactionIdOffset().size());
- EXPECT_EQ(0, opt.getRandomOffset().size());
- EXPECT_GT(0, opt.getElapsedTimeOffset());
- EXPECT_GT(0, opt.getServerIdOffset());
- EXPECT_GT(0, opt.getRequestedIpOffset());
- EXPECT_EQ("", opt.getDiags());
- EXPECT_EQ("", opt.getWrapped());
- EXPECT_EQ("", opt.getServerName());
- }
- /// \brief Split string to array of C-strings
- ///
- /// \param s String to split (tokenize)
- /// \param num Number of tokens returned
- /// \return array of C-strings (tokens)
- char** tokenizeString(const std::string& text_to_split, int* num) const {
- char** results = NULL;
- // Tokenization with std streams
- std::stringstream text_stream(text_to_split);
- // Iterators to be used for tokenization
- std::istream_iterator<std::string> text_iterator(text_stream);
- std::istream_iterator<std::string> text_end;
- // Tokenize string (space is a separator) using begin and end iteratos
- std::vector<std::string> tokens(text_iterator, text_end);
- if (tokens.size() > 0) {
- // Allocate array of C-strings where we will store tokens
- results = static_cast<char**>(malloc(tokens.size() * sizeof(char*)));
- if (results == NULL) {
- throw std::bad_alloc();
- }
- // Store tokens in C-strings array
- for (int i = 0; i < tokens.size(); ++i) {
- char* cs = static_cast<char*>(malloc(tokens[i].length() + 1));
- strcpy(cs, tokens[i].c_str());
- results[i] = cs;
- }
- // Return number of tokens to calling function
- if (num != NULL) {
- *num = tokens.size();
- }
- }
- return results;
- }
- };
- TEST_F(CommandOptionsTest, Defaults) {
- process("perfdhcp");
- checkDefaults();
- }
- TEST_F(CommandOptionsTest, UseFirst) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -1 -B -l ethx");
- EXPECT_TRUE(opt.isUseFirst());
- }
- TEST_F(CommandOptionsTest, IpVersion) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -6 -l ethx -c -i");
- EXPECT_EQ(6, opt.getIpVersion());
- EXPECT_EQ("ethx", opt.getLocalName());
- EXPECT_TRUE(opt.isRapidCommit());
- EXPECT_FALSE(opt.isBroadcast());
- process("perfdhcp -4 -B -l ethx");
- EXPECT_EQ(4, opt.getIpVersion());
- EXPECT_TRUE(opt.isBroadcast());
- EXPECT_FALSE(opt.isRapidCommit());
- // Negative test cases
- // -4 and -6 must not coexist
- EXPECT_THROW(process("perfdhcp -4 -6 -l ethx"), isc::InvalidParameter);
- // -6 and -B must not coexist
- EXPECT_THROW(process("perfdhcp -6 -B -l ethx"), isc::InvalidParameter);
- // -c and -4 (default) must not coexist
- EXPECT_THROW(process("perfdhcp -c -l ethx"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Rate) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -4 -r 10 -l ethx");
- EXPECT_EQ(10, opt.getRate());
- // Negative test cases
- // Rate must not be 0
- EXPECT_THROW(process("perfdhcp -4 -r 0 -l ethx"), isc::InvalidParameter);
- // -r must be specified to use -n, -p and -D
- EXPECT_THROW(process("perfdhcp -6 -t 5 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -4 -n 150 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -6 -p 120 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -4 -D 1400 -l ethx"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, ReportDelay) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -r 100 -t 17 -l ethx");
- EXPECT_EQ(17, opt.getReportDelay());
- // Negative test cases
- // -t must be positive integer
- EXPECT_THROW(process("perfdhcp -r 10 -t -8 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -r 10 -t 0 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -r 10 -t s -l ethx"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, ClientsNum) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -R 200 -l ethx");
- EXPECT_EQ(200, opt.getClientsNum());
- process("perfdhcp -R 0 -l ethx");
- EXPECT_EQ(0, opt.getClientsNum());
- // Negative test cases
- // Number of clients must be non-negative integer
- EXPECT_THROW(process("perfdhcp -R -5 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -R gs -l ethx"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Base) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -6 -b MAC=10::20::30::40::50::60 -l ethx -b duiD=1AB7F5670901FF");
- uint8_t mac[6] = {0x10, 0x20, 0x30, 0x40, 0x50, 0x60 };
- uint8_t duid[7] = { 0x1A, 0xB7, 0xF5, 0x67, 0x09, 0x01, 0xFF };
- // Test Mac
- std::vector<uint8_t> v1 = opt.getMacPrefix();
- ASSERT_EQ(6, v1.size());
- EXPECT_TRUE(std::equal(v1.begin(), v1.end(), mac));
- // "3x" is invalid value in MAC address
- EXPECT_THROW(process("perfdhcp -b mac=10::2::3x::4::5::6 -l ethx"), isc::InvalidParameter);
- // Test DUID
- std::vector<uint8_t> v2 = opt.getDuidPrefix();
- ASSERT_EQ(sizeof(duid) / sizeof(uint8_t), v2.size());
- EXPECT_TRUE(std::equal(v2.begin(), v2.end(), duid));
- // "t" is invalid digit in DUID
- EXPECT_THROW(process("perfdhcp -6 -l ethx -b duiD=1AB7Ft670901FF"), isc::InvalidParameter);
- // Some more negative test cases
- // Base is not specified
- EXPECT_THROW(process("perfdhcp -b -l ethx"), isc::InvalidParameter);
- // Typo: should be mac= instead of mc=
- EXPECT_THROW(process("perfdhcp -l ethx -b mc=00:01:02:03::04:05"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, DropTime) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -l ethx -d 12");
- ASSERT_EQ(2, opt.getDropTime().size());
- EXPECT_DOUBLE_EQ(12, opt.getDropTime()[0]);
- EXPECT_DOUBLE_EQ(1, opt.getDropTime()[1]);
- process("perfdhcp -l ethx -d 2 -d 4.7");
- ASSERT_EQ(2, opt.getDropTime().size());
- EXPECT_DOUBLE_EQ(2, opt.getDropTime()[0]);
- EXPECT_DOUBLE_EQ(4.7, opt.getDropTime()[1]);
- // Negative test cases
- // Drop time must not be negative
- EXPECT_THROW(process("perfdhcp -l ethx -d -2 -d 4.7"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -l ethx -d -9.1 -d 0"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, TimeOffset) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -l ethx -T file1.x -T file2.x -E 4");
- EXPECT_EQ(4, opt.getElapsedTimeOffset());
- // Negative test cases
- // Argument -E must be used with -T
- EXPECT_THROW(process("perfdhcp -l ethx -E 3 -i"), isc::InvalidParameter);
- // Value in -E not specified
- EXPECT_THROW(process("perfdhcp -l ethx -T file.x -E -i"), isc::InvalidParameter);
- // Value for -E must not be negative
- EXPECT_THROW(process("perfdhcp -l ethx -E -3 -T file.x"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, ExchangeMode) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -l ethx -i");
- EXPECT_EQ(CommandOptions::DO_SA, opt.getExchangeMode());
- // Negative test cases
- // No template file specified
- EXPECT_THROW(process("perfdhcp -i -l ethx -X 3"), isc::InvalidParameter);
- // Offsets can't be used in simple exchanges (-i)
- EXPECT_THROW(process("perfdhcp -i -l ethx -O 2 -T file.x"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -i -l ethx -E 3 -T file.x"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -i -l ethx -S 1 -T file.x"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -i -l ethx -I 2 -T file.x"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Offsets) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -E5 -4 -I 2 -S3 -O 30 -X7 -l ethx -X3 -T file1.x -T file2.x");
- EXPECT_EQ(2, opt.getRequestedIpOffset());
- EXPECT_EQ(5, opt.getElapsedTimeOffset());
- EXPECT_EQ(3, opt.getServerIdOffset());
- ASSERT_EQ(2, opt.getRandomOffset().size());
- EXPECT_EQ(30, opt.getRandomOffset()[0]);
- EXPECT_EQ(30, opt.getRandomOffset()[1]);
- ASSERT_EQ(2, opt.getTransactionIdOffset().size());
- EXPECT_EQ(7, opt.getTransactionIdOffset()[0]);
- EXPECT_EQ(3, opt.getTransactionIdOffset()[1]);
- // Negative test cases
- // IP offset/IA_NA offset must be positive
- EXPECT_THROW(process("perfdhcp -6 -I 0 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -6 -I -4 -l ethx"), isc::InvalidParameter);
- // TODO - other negative cases
- }
- TEST_F(CommandOptionsTest, LocalPort) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -l ethx -L 2000");
- EXPECT_EQ(2000, opt.getLocalPort());
- // Negative test cases
- // Local port must be between 0..65535
- EXPECT_THROW(process("perfdhcp -l ethx -L -2"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -l ethx -L"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -l ethx -L 65540"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Preload) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -1 -P 3 -l ethx");
- EXPECT_EQ(3, opt.getPreload());
- // Negative test cases
- // Number of preload packages must not be negative integer
- EXPECT_THROW(process("perfdhcp -P -1 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -P -3 -l ethx"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Seed) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -6 -P 2 -s 23 -l ethx");
- EXPECT_EQ(23, opt.getSeed());
- EXPECT_TRUE(opt.isSeeded());
- process("perfdhcp -6 -P 2 -s 0 -l ethx");
- EXPECT_EQ(0, opt.getSeed());
- EXPECT_FALSE(opt.isSeeded());
- // Negtaive test cases
- // Seed must be non-negative integer
- EXPECT_THROW(process("perfdhcp -6 -P 2 -s -5 -l ethx"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -6 -P 2 -s -l ethx"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, TemplateFiles) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -T file1.x -l ethx");
- ASSERT_EQ(1, opt.getTemplateFiles().size());
- EXPECT_EQ("file1.x", opt.getTemplateFiles()[0]);
- process("perfdhcp -T file1.x -s 12 -w start -T file2.x -4 -l ethx");
- ASSERT_EQ(2, opt.getTemplateFiles().size());
- EXPECT_EQ("file1.x", opt.getTemplateFiles()[0]);
- EXPECT_EQ("file2.x", opt.getTemplateFiles()[1]);
- // Negative test cases
- // No template file specified
- EXPECT_THROW(process("perfdhcp -s 12 -l ethx -T"), isc::InvalidParameter);
- // Too many template files specified
- EXPECT_THROW(process("perfdhcp -s 12 -l ethx -T file.x -T file.x -T file.x"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Wrapped) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -B -w start -i -l ethx");
- EXPECT_EQ("start", opt.getWrapped());
- // Negative test cases
- // Missing command after -w, expected start/stop
- EXPECT_THROW(process("perfdhcp -B -i -l ethx -w"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Diagnostics) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -l ethx -i -x asTe");
- EXPECT_EQ("asTe", opt.getDiags());
- // Negative test cases
- // No diagnostics string specified
- EXPECT_THROW(process("perfdhcp -l ethx -i -x"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Aggressivity) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -a 10 -l 192.168.0.1");
- EXPECT_EQ(10, opt.getAggressivity());
- // Negative test cases
- // Aggressivity must be non negative integer
- EXPECT_THROW(process("perfdhcp -l ethx -a 0"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -l ethx -a"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -a -2 -l ethx -a 3"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, MaxDrop) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -D 25 -l ethx -r 10");
- EXPECT_EQ(25, opt.getMaxDrop()[0]);
- process("perfdhcp -D 25 -l ethx -D 15 -r 10");
- EXPECT_EQ(25, opt.getMaxDrop()[0]);
- EXPECT_EQ(15, opt.getMaxDrop()[1]);
- process("perfdhcp -D 15% -l ethx -r 10");
- EXPECT_EQ(15, opt.getMaxDropPercentage()[0]);
- process("perfdhcp -D 15% -D25% -l ethx -r 10");
- EXPECT_EQ(15, opt.getMaxDropPercentage()[0]);
- EXPECT_EQ(25, opt.getMaxDropPercentage()[1]);
- process("perfdhcp -D 1% -D 99% -l ethx -r 10");
- EXPECT_EQ(1, opt.getMaxDropPercentage()[0]);
- EXPECT_EQ(99, opt.getMaxDropPercentage()[1]);
- // Negative test cases
- // Too many -D<value> options
- EXPECT_THROW(process("perfdhcp -D 0% -D 1 -l ethx -r20 -D 3"), isc::InvalidParameter);
- // Too many -D<value%> options
- EXPECT_THROW(process("perfdhcp -D 99% -D 13% -l ethx -r20 -D 10%"), isc::InvalidParameter);
- // Percentage is out of bounds
- EXPECT_THROW(process("perfdhcp -D101% -D 13% -l ethx -r20"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -D0% -D 13% -l ethx -r20"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, NumRequest) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -n 1000 -r 10 -l ethx");
- EXPECT_EQ(1000, opt.getNumRequests()[0]);
- process("perfdhcp -n 5 -r 10 -n 500 -l ethx");
- EXPECT_EQ(5, opt.getNumRequests()[0]);
- EXPECT_EQ(500, opt.getNumRequests()[1]);
- // Negative test cases
- // Too many -n<value> parameters, expected maximum 2
- EXPECT_THROW(process("perfdhcp -n 1 -n 2 -l ethx -n3 -r 20"), isc::InvalidParameter);
- // Num request must be positive integer
- EXPECT_THROW(process("perfdhcp -n 1 -n -22 -l ethx -r 10"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -n 0 -l ethx -r 10"), isc::InvalidParameter);
- }
- TEST_F(CommandOptionsTest, Period) {
- CommandOptions& opt = CommandOptions::instance();
- process("perfdhcp -p 120 -l ethx -r 100");
- EXPECT_EQ(120, opt.getPeriod());
- // Negative test cases
- // Test period must be positive integer
- EXPECT_THROW(process("perfdhcp -p 0 -l ethx -r 50"), isc::InvalidParameter);
- EXPECT_THROW(process("perfdhcp -p -3 -l ethx -r 50"), isc::InvalidParameter);
- }
|