Upstream version 9.37.197.0
[platform/framework/web/crosswalk.git] / src / third_party / libaddressinput / src / cpp / test / mock_downloader.cc
1 // Copyright (C) 2014 Google Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "mock_downloader.h"
16
17 #include <cassert>
18 #include <cstddef>
19 #include <map>
20 #include <string>
21
22 namespace i18n {
23 namespace addressinput {
24
25 // static
26 const char MockDownloader::kMockDataUrl[] = "mock:///";
27
28 namespace {
29
30 // The number of characters in the mock data URL prefix.
31 const size_t kMockDataUrlLength = sizeof MockDownloader::kMockDataUrl - 1;
32
33 }  // namespace
34
35 MockDownloader::MockDownloader() {}
36
37 MockDownloader::~MockDownloader() {}
38
39 void MockDownloader::Download(const std::string& url,
40                               const Callback& downloaded) const {
41   assert(url.compare(0, kMockDataUrlLength, kMockDataUrl) == 0);
42   std::string key(url, kMockDataUrlLength);
43   std::map<std::string, std::string>::const_iterator it = data_.find(key);
44   bool success = it != data_.end();
45   downloaded(success, url, success ? new std::string(it->second) : NULL);
46 }
47
48 }  // namespace addressinput
49 }  // namespace i18n