Skip to content
Snippets Groups Projects
Select Git revision
  • e657e4fe90e591364312f757d39e4cd52a539fc4
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/windows-test/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • release/201811
  • release/201808
  • wip/patches_poly_2017/cedryk_doucet/abderahmane_bouziane
  • releases/beta1
  • android/release_464
  • android/release_463
  • android/release_462
  • android/release_461
  • android/release_460
  • android/release_459
  • android/release_458
  • android/release_457
  • android/release_456
  • android/release_455
  • android/release_454
  • android/release_453
  • android/release_452
  • android/release_451
  • android/release_450
  • android/release_449
  • android/release_448
  • android/release_447
  • android/release_446
  • android/release_445
38 results

CallView.kt

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    httptester.h 2.80 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/value.h>
    #include <opendht/log.h>
    #include <opendht/http.h>
    
    #include <opendht/dhtrunner.h>
    #include <opendht/dht_proxy_server.h>
    
    namespace test {
    
    class HttpTester : public CppUnit::TestFixture {
        CPPUNIT_TEST_SUITE(HttpTester);
        // parse_url
        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);
        // send
        CPPUNIT_TEST(test_send_json);
        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();
        /**
         * Test send(json)
         */
       void test_send_json();
    
     private:
        std::shared_ptr<dht::Logger> logger {};
    
        dht::DhtRunner nodePeer;
        std::shared_ptr<dht::DhtRunner> nodeProxy;
        std::unique_ptr<dht::DhtProxyServer> serverProxy;
    };
    
    }  // namespace test