Welcome to mirror list, hosted at ThFree Co, Russian Federation.

booking_tests.cpp « partners_api_tests « partners_api - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1af991dceea287fcc23750c4868cf68c882f533d (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "testing/testing.hpp"

#include "partners_api/booking_api.hpp"

UNIT_TEST(Booking_SmokeTest)
{
  BookingApi api;

  string url = api.GetBookingUrl("http://someurl.com");
  TEST(!url.empty(), ());
}

UNIT_TEST(Booking_GetMinPrice)
{
  BookingApi api;

  {
    string price;
    string currency;
    api.GetMinPrice("10340", BookingApi::kDefaultCurrency,
                    [&price, &currency](string const & val, string const & curr)
                    {
                      price = val;
                      currency = curr;
                      testing::StopEventLoop();
                    });
    testing::RunEventLoop();

    TEST(!price.empty(), ());
    TEST(!currency.empty(), ());
    TEST_EQUAL(currency, "EUR", ());
  }

  {
    string price;
    string currency;
    api.GetMinPrice("10340", "RUB", [&price, &currency](string const & val, string const & curr)
                    {
                      price = val;
                      currency = curr;
                      testing::StopEventLoop();
                    });
    testing::RunEventLoop();

    TEST(!price.empty(), ());
    TEST(!currency.empty(), ());
    TEST_EQUAL(currency, "RUB", ());
  }

  {
    string price;
    string currency;
    api.GetMinPrice("10340", "ISK", [&price, &currency](string const & val, string const & curr)
                    {
                      price = val;
                      currency = curr;
                      testing::StopEventLoop();
                    });
    testing::RunEventLoop();

    TEST(!price.empty(), ());
    TEST(!currency.empty(), ());
    TEST_EQUAL(currency, "ISK", ());
  }
}

UNIT_TEST(GetHotelInfo)  // GetHotelInfo is a mockup now.
{
  BookingApi api;
  BookingApi::HotelInfo info;

  api.GetHotelInfo("000", "en", [&info](BookingApi::HotelInfo const & i)
  {
    info = i;
  });

  TEST(!info.m_description.empty(), ());
  TEST_EQUAL(info.m_photos.size(), 9, ());
  TEST_EQUAL(info.m_facilities.size(), 3, ());
  TEST_EQUAL(info.m_reviews.size(), 12, ());
}