File: FakeHttpClientTest.cpp

package info (click to toggle)
cryfs 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,404 kB
  • sloc: cpp: 150,188; asm: 10,493; python: 1,455; javascript: 65; sh: 50; makefile: 17; xml: 7
file content (38 lines) | stat: -rw-r--r-- 1,377 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <gtest/gtest.h>
#include "cpp-utils/network/FakeHttpClient.h"
#include "cpp-utils/pointer/unique_ref_boost_optional_gtest_workaround.h"


using namespace cpputils;

TEST(FakeHttpClientTest, Empty) {
        EXPECT_ANY_THROW(FakeHttpClient().get("http://example.com"));
}

TEST(FakeHttpClientTest, Nonexisting) {
        FakeHttpClient client;
        client.addWebsite("http://existing.com", "content");
        EXPECT_ANY_THROW(client.get("http://notexisting.com"));
}

TEST(FakeHttpClientTest, Existing) {
        FakeHttpClient client;
        client.addWebsite("http://existing.com", "content");
        EXPECT_EQ("content", client.get("http://existing.com"));
}

TEST(FakeHttpClientTest, TwoExisting) {
        FakeHttpClient client;
        client.addWebsite("http://firstexisting.com", "first_content");
        client.addWebsite("http://secondexisting.com", "second_content");
        EXPECT_EQ("first_content", client.get("http://firstexisting.com"));
        EXPECT_EQ("second_content", client.get("http://secondexisting.com"));
		EXPECT_ANY_THROW(client.get("http://notexisting.com"));
}

TEST(FakeHttpClientTest, Overwriting) {
        FakeHttpClient client;
        client.addWebsite("http://existing.com", "content");
        client.addWebsite("http://existing.com", "new_content");
        EXPECT_EQ("new_content", client.get("http://existing.com"));
}