| Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // | 
|  | 2 | // Copyright (C) 2009 The Android Open Source Project | 
|  | 3 | // | 
|  | 4 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | // you may not use this file except in compliance with the License. | 
|  | 6 | // You may obtain a copy of the License at | 
|  | 7 | // | 
|  | 8 | //      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | // | 
|  | 10 | // Unless required by applicable law or agreed to in writing, software | 
|  | 11 | // distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | // See the License for the specific language governing permissions and | 
|  | 14 | // limitations under the License. | 
|  | 15 | // | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 16 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 17 | #ifndef UPDATE_ENGINE_COMMON_MOCK_HTTP_FETCHER_H_ | 
|  | 18 | #define UPDATE_ENGINE_COMMON_MOCK_HTTP_FETCHER_H_ | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 19 |  | 
| Alex Vakulenko | d2779df | 2014-06-16 13:19:00 -0700 | [diff] [blame] | 20 | #include <string> | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 21 | #include <vector> | 
| Andrew de los Reyes | 4516810 | 2010-11-22 11:13:50 -0800 | [diff] [blame] | 22 |  | 
|  | 23 | #include <base/logging.h> | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 24 | #include <brillo/message_loops/message_loop.h> | 
| Andrew de los Reyes | 4516810 | 2010-11-22 11:13:50 -0800 | [diff] [blame] | 25 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 26 | #include "update_engine/common/http_fetcher.h" | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 27 |  | 
|  | 28 | // This is a mock implementation of HttpFetcher which is useful for testing. | 
|  | 29 | // All data must be passed into the ctor. When started, MockHttpFetcher will | 
|  | 30 | // deliver the data in chunks of size kMockHttpFetcherChunkSize. To simulate | 
|  | 31 | // a network failure, you can call FailTransfer(). | 
|  | 32 |  | 
|  | 33 | namespace chromeos_update_engine { | 
|  | 34 |  | 
|  | 35 | // MockHttpFetcher will send a chunk of data down in each call to BeginTransfer | 
|  | 36 | // and Unpause. For the other chunks of data, a callback is put on the run | 
|  | 37 | // loop and when that's called, another chunk is sent down. | 
|  | 38 | const size_t kMockHttpFetcherChunkSize(65536); | 
|  | 39 |  | 
|  | 40 | class MockHttpFetcher : public HttpFetcher { | 
|  | 41 | public: | 
|  | 42 | // The data passed in here is copied and then passed to the delegate after | 
|  | 43 | // the transfer begins. | 
| Alex Vakulenko | f68bbbc | 2015-02-09 12:53:18 -0800 | [diff] [blame] | 44 | MockHttpFetcher(const uint8_t* data, | 
| Andrew de los Reyes | 4516810 | 2010-11-22 11:13:50 -0800 | [diff] [blame] | 45 | size_t size, | 
|  | 46 | ProxyResolver* proxy_resolver) | 
| Alex Deymo | c1c17b4 | 2015-11-23 03:53:15 -0300 | [diff] [blame] | 47 | : HttpFetcher(proxy_resolver), | 
| Andrew de los Reyes | 4516810 | 2010-11-22 11:13:50 -0800 | [diff] [blame] | 48 | sent_size_(0), | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 49 | timeout_id_(brillo::MessageLoop::kTaskIdNull), | 
| Darin Petkov | edc522e | 2010-11-05 09:35:17 -0700 | [diff] [blame] | 50 | paused_(false), | 
| Andrew de los Reyes | 173e63c | 2011-04-04 17:19:57 -0700 | [diff] [blame] | 51 | fail_transfer_(false), | 
| Alex Deymo | f6ee016 | 2015-07-31 12:35:22 -0700 | [diff] [blame] | 52 | never_use_(false) { | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 53 | data_.insert(data_.end(), data, data + size); | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 54 | } | 
|  | 55 |  | 
| Alex Vakulenko | f68bbbc | 2015-02-09 12:53:18 -0800 | [diff] [blame] | 56 | // Constructor overload for string data. | 
|  | 57 | MockHttpFetcher(const char* data, size_t size, ProxyResolver* proxy_resolver) | 
|  | 58 | : MockHttpFetcher(reinterpret_cast<const uint8_t*>(data), size, | 
|  | 59 | proxy_resolver) {} | 
|  | 60 |  | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 61 | // Cleans up all internal state. Does not notify delegate | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 62 | ~MockHttpFetcher() override; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 63 |  | 
| Andrew de los Reyes | 3fd5d30 | 2010-10-07 20:07:18 -0700 | [diff] [blame] | 64 | // Ignores this. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 65 | void SetOffset(off_t offset) override { | 
| Andrew de los Reyes | 34e41a1 | 2010-10-26 20:07:58 -0700 | [diff] [blame] | 66 | sent_size_ = offset; | 
|  | 67 | if (delegate_) | 
|  | 68 | delegate_->SeekToOffset(offset); | 
|  | 69 | } | 
| Andrew de los Reyes | 3fd5d30 | 2010-10-07 20:07:18 -0700 | [diff] [blame] | 70 |  | 
| Gilad Arnold | e4ad250 | 2011-12-29 17:08:54 -0800 | [diff] [blame] | 71 | // Do nothing. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 72 | void SetLength(size_t length) override {} | 
|  | 73 | void UnsetLength() override {} | 
|  | 74 | void set_low_speed_limit(int low_speed_bps, int low_speed_sec) override {} | 
|  | 75 | void set_connect_timeout(int connect_timeout_seconds) override {} | 
|  | 76 | void set_max_retry_count(int max_retry_count) override {} | 
| Gilad Arnold | e4ad250 | 2011-12-29 17:08:54 -0800 | [diff] [blame] | 77 |  | 
| Gilad Arnold | 48085ba | 2011-11-16 09:36:08 -0800 | [diff] [blame] | 78 | // Dummy: no bytes were downloaded. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 79 | size_t GetBytesDownloaded() override { | 
| Gilad Arnold | 48085ba | 2011-11-16 09:36:08 -0800 | [diff] [blame] | 80 | return sent_size_; | 
|  | 81 | } | 
|  | 82 |  | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 83 | // Begins the transfer if it hasn't already begun. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 84 | void BeginTransfer(const std::string& url) override; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 85 |  | 
|  | 86 | // If the transfer is in progress, aborts the transfer early. | 
|  | 87 | // The transfer cannot be resumed. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 88 | void TerminateTransfer() override; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 89 |  | 
|  | 90 | // Suspend the mock transfer. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 91 | void Pause() override; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 92 |  | 
|  | 93 | // Resume the mock transfer. | 
| Alex Deymo | 610277e | 2014-11-11 21:18:11 -0800 | [diff] [blame] | 94 | void Unpause() override; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 95 |  | 
|  | 96 | // Fail the transfer. This simulates a network failure. | 
| Darin Petkov | edc522e | 2010-11-05 09:35:17 -0700 | [diff] [blame] | 97 | void FailTransfer(int http_response_code); | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 98 |  | 
| Andrew de los Reyes | 173e63c | 2011-04-04 17:19:57 -0700 | [diff] [blame] | 99 | // If set to true, this will EXPECT fail on BeginTransfer | 
|  | 100 | void set_never_use(bool never_use) { never_use_ = never_use; } | 
|  | 101 |  | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 102 | const brillo::Blob& post_data() const { | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 103 | return post_data_; | 
|  | 104 | } | 
| adlr@google.com | c98a7ed | 2009-12-04 18:54:03 +0000 | [diff] [blame] | 105 |  | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 106 | private: | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 107 | // Sends data to the delegate and sets up a timeout callback if needed. | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 108 | // There must be a delegate and there must be data to send. If there is | 
|  | 109 | // already a timeout callback, and it should be deleted by the caller, | 
|  | 110 | // this will return false; otherwise true is returned. | 
|  | 111 | // If skip_delivery is true, no bytes will be delivered, but the callbacks | 
| Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 112 | // still be set if needed. | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 113 | bool SendData(bool skip_delivery); | 
|  | 114 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 115 | // Callback for when our message loop timeout expires. | 
|  | 116 | void TimeoutCallback(); | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 117 |  | 
| Darin Petkov | edc522e | 2010-11-05 09:35:17 -0700 | [diff] [blame] | 118 | // Sets the HTTP response code and signals to the delegate that the transfer | 
|  | 119 | // is complete. | 
|  | 120 | void SignalTransferComplete(); | 
|  | 121 |  | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 122 | // A full copy of the data we'll return to the delegate | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 123 | brillo::Blob data_; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 124 |  | 
|  | 125 | // The number of bytes we've sent so far | 
|  | 126 | size_t sent_size_; | 
|  | 127 |  | 
| Alex Deymo | 60ca1a7 | 2015-06-18 18:19:15 -0700 | [diff] [blame] | 128 | // The TaskId of the timeout callback. After each chunk of data sent, we | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 129 | // time out for 0s just to make sure that run loop services other clients. | 
| Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 130 | brillo::MessageLoop::TaskId timeout_id_; | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 131 |  | 
|  | 132 | // True iff the fetcher is paused. | 
|  | 133 | bool paused_; | 
|  | 134 |  | 
| Darin Petkov | edc522e | 2010-11-05 09:35:17 -0700 | [diff] [blame] | 135 | // Set to true if the transfer should fail. | 
|  | 136 | bool fail_transfer_; | 
|  | 137 |  | 
| Andrew de los Reyes | 173e63c | 2011-04-04 17:19:57 -0700 | [diff] [blame] | 138 | // Set to true if BeginTransfer should EXPECT fail. | 
|  | 139 | bool never_use_; | 
|  | 140 |  | 
| rspangler@google.com | 49fdf18 | 2009-10-10 00:57:34 +0000 | [diff] [blame] | 141 | DISALLOW_COPY_AND_ASSIGN(MockHttpFetcher); | 
|  | 142 | }; | 
|  | 143 |  | 
|  | 144 | }  // namespace chromeos_update_engine | 
|  | 145 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 146 | #endif  // UPDATE_ENGINE_COMMON_MOCK_HTTP_FETCHER_H_ |