KiCad PCB EDA Suite
Loading...
Searching...
No Matches
http_lib_fake_server.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
14 * Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22#include <map>
23#include <mutex>
24#include <string>
25#include <vector>
26
28
29
35{
36public:
37 struct RESPONSE
38 {
39 int statusCode = 200;
40 std::string body;
41 };
42
44 void SetResponse( const std::string& aUrl, RESPONSE aResponse );
45
47 int RequestCount( const std::string& aUrl ) const;
48
50
51 void InstallStandardLibrary( const std::string& aRootUrl );
52
53private:
54 mutable std::mutex m_mutex;
55 std::map<std::string, RESPONSE> m_responses;
56 std::vector<std::string> m_requests;
57};
std::function< bool(const std::string &aUrl, int &aStatusCode, std::string &aBody, std::string &aError)> RETRIEVER
Allows replacing CURL fetches with a mock for testing.
In-process HTTP library server used by QA tests.
std::vector< std::string > m_requests
int RequestCount(const std::string &aUrl) const
Number of times aUrl has been requested.
void InstallStandardLibrary(const std::string &aRootUrl)
void SetResponse(const std::string &aUrl, RESPONSE aResponse)
Replace the response served for an exact URL.
std::map< std::string, RESPONSE > m_responses
HTTP_LIB_CONNECTION::RETRIEVER MakeRetriever()