Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • windows_ci
  • cert_pk_id
  • proxy_push_result
  • cnode_put_id
  • update-windows-build
  • proxy
  • resubscribe_on_token_change
  • actions
  • client_mode
  • llhttp
  • search_node_add
  • crypto_aes_gcm_argon2
  • ios_notifications
  • log_fmt
  • v2asio
  • fix-msvc
  • message_split
  • meson
  • build_unify
  • v3.4.0
  • v3.3.1
  • v3.3.1rc1
  • v3.3.1rc2
  • v3.3.0
  • v3.2.0
  • v3.1.11
  • v3.1.10
  • v3.1.9
  • v3.1.8.2
  • v3.1.8.1
  • v3.1.8
  • v3.1.7
  • v3.1.6
  • v3.1.5
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1
  • v3.0.1
40 results

httptester.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    httptester.h 2.45 KiB
    /*
     *  Copyright (C) 2019 Savoir-faire Linux Inc.
     *
     *  Author: Vsevolod Ivanov <vsevolod.ivanov@savoirfairelinux.com>
     *
     *  This program is free software; you can redistribute it and/or modify
     *  it under the terms of the GNU General Public License as published by
     *  the Free Software Foundation; either version 3 of the License, or
     *  (at your option) any later version.
     *
     *  This program is distributed in the hope that it will be useful,
     *  but WITHOUT ANY WARRANTY; without even the implied warranty of
     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     *  GNU General Public License for more details.
     *
     *  You should have received a copy of the GNU General Public License
     *  along with this program. If not, see <https://www.gnu.org/licenses/>.
     */
    
    #pragma once
    
    // cppunit
    #include <cppunit/TestFixture.h>
    #include <cppunit/extensions/HelperMacros.h>
    
    #include <opendht/log.h>
    #include <opendht/http.h>
    
    namespace test {
    
    class HttpTester : public CppUnit::TestFixture {
        CPPUNIT_TEST_SUITE(HttpTester);
        CPPUNIT_TEST(test_parse_url);
        CPPUNIT_TEST(test_parse_https_url_no_service);
        CPPUNIT_TEST(test_parse_url_no_prefix_no_target);
        CPPUNIT_TEST(test_parse_url_target);
        CPPUNIT_TEST(test_parse_url_query);
        CPPUNIT_TEST(test_parse_url_fragment);
        CPPUNIT_TEST(test_parse_url_ipv4);
        CPPUNIT_TEST(test_parse_url_no_prefix_no_target_ipv4);
        CPPUNIT_TEST(test_parse_url_target_ipv4);
        CPPUNIT_TEST(test_parse_url_ipv6);
        CPPUNIT_TEST(test_parse_url_no_prefix_no_target_ipv6);
        CPPUNIT_TEST(test_parse_url_target_ipv6);
        CPPUNIT_TEST_SUITE_END();
    
     public:
        /**
         * Method automatically called before each test by CppUnit
         * Init nodes
         */
       void setUp();
        /**
         * Method automatically called after each test CppUnit
         */
       void tearDown();
        /**
         * Test parse urls
         */
       void test_parse_url();
       void test_parse_https_url_no_service();
       void test_parse_url_no_prefix_no_target();
       void test_parse_url_target();
       void test_parse_url_query();
       void test_parse_url_fragment();
        /**
         * Test parse urls (ipv4)
         */
       void test_parse_url_ipv4();
       void test_parse_url_no_prefix_no_target_ipv4();
       void test_parse_url_target_ipv4();
        /**
         * Test parse urls (ipv6)
         */
       void test_parse_url_ipv6();
       void test_parse_url_no_prefix_no_target_ipv6();
       void test_parse_url_target_ipv6();
    
     private:
        std::shared_ptr<dht::Logger> logger {};
    };
    
    }  // namespace test