| /* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| */ |
| |
| /* |
| * MPinSDK::IHttpRequest implementation used for to reproduce recorded http requests |
| */ |
| |
| #ifndef _TEST_HTTP_PLAYER_H_ |
| #define _TEST_HTTP_PLAYER_H_ |
| |
| #include "http_recorded_data.h" |
| |
| class HttpPlayer : public MPinSDK::IHttpRequest |
| { |
| public: |
| typedef MPinSDK::String String; |
| typedef MPinSDK::StringMap StringMap; |
| typedef HttpRecordedData::Request Request; |
| typedef HttpRecordedData::Response Response; |
| |
| HttpPlayer(HttpRecordedData& recordedData, const String& context) : m_recordedData(recordedData), m_context(context) {} |
| virtual void SetHeaders(const StringMap& headers); |
| virtual void SetQueryParams(const StringMap& queryParams); |
| virtual void SetContent(const String& data); |
| virtual void SetTimeout(int seconds); |
| virtual bool Execute(Method method, const String& url); |
| virtual const String& GetExecuteErrorMessage() const; |
| virtual int GetHttpStatusCode() const; |
| virtual const StringMap& GetResponseHeaders() const; |
| virtual const String& GetResponseData() const; |
| |
| private: |
| String m_requestData; |
| HttpRecordedData& m_recordedData; |
| String m_context; |
| Response m_response; |
| }; |
| |
| #endif // _TEST_HTTP_PLAYER_H_ |