summaryrefslogtreecommitdiff
path: root/test/storage/http_error.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] Make DefaultFileSource react to all NetworkStatus changesKonstantin Käfer2015-11-021-3/+0
|
* [core] move retry logic to DefaultFileSourceKonstantin Käfer2015-11-021-37/+50
|
* [core] Fudge numbers to get a timing-based test to pass more oftenJohn Firebaugh2015-10-291-1/+1
| | | | Fixes #2872
* [core] Make response data shared to avoid excessive copyingKonstantin Käfer2015-10-261-2/+3
|
* [core] add support for stale responsesKonstantin Käfer2015-10-261-0/+2
| | | | We're now returning stale responses from cache. Those responses will have the `stale` flag set to true. Currently, all requesters in the core code discard stale responses, and cancel the request immediately after they got a non-stale response.
* [core] all requests have to be canceled explicitly nowKonstantin Käfer2015-10-261-2/+4
| | | | By not automatically destroying Request objects after the result has been delivered, we are making sure that we can potentially fire the callback multiple times without adverse effects. This means that you have to hold on to the result of fs->request(), can explicitly cancel it if you don't want to be notified of data changes anymore. Not doing so will monitor the request indefinitely and will prevent the app from exiting.
* [core] bump libuv to 1.7.5 across all platformsMike Morris2015-10-141-1/+7
| | | | | | UV_ASYNC_PARAMS and UV_TIMER_PARAMS for libuv <= 0.10 compatibility use st_mtim.tv_sec in libuv > 0.10.x
* [osx] OS X 10.11 returns another error stringKonstantin Käfer2015-10-011-1/+4
|
* Remove Environment::terminate and associated codeJohn Firebaugh2015-04-281-4/+2
| | | | Fixes #1336
* hide Thread<> and separate the Implementation objectKonstantin Käfer2015-04-131-4/+3
|
* convert DefaultFileSource to use util::Thread<>Konstantin Käfer2015-04-101-3/+4
|
* scope Requests to an Environment object for easier cancelationKonstantin Käfer2015-03-061-4/+14
| | | | | | | | | we are now scoping all file requests to an environment object. The FileSource implementation treats this as an opaque pointer, but allows canceling all Requests that are associated with that pointer. This is necessary to abort all file requests that originated from a particular Map object. Aborting a file request is different from canceling a file request: A canceled request doesn't have its callback called, while an aborted request will have its callback called with an error, indicating that the environment is going to be shut down.
* add ca bundle loading back to CURLKonstantin Käfer2015-02-171-1/+1
|
* refactor makefileKonstantin Käfer2015-02-041-1/+1
|
* asset:// URLs are local to the executable path nowKonstantin Käfer2015-02-041-15/+15
|
* rearrange tests and make more robustKonstantin Käfer2015-02-041-2/+2
|
* rearrange tests and add storage testsKonstantin Käfer2015-02-041-0/+63