mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
235 lines
7.0 KiB
C++
235 lines
7.0 KiB
C++
// Copyright 2017 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef NET_REPORTING_REPORTING_TEST_UTIL_H_
|
|
#define NET_REPORTING_REPORTING_TEST_UTIL_H_
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "base/macros.h"
|
|
#include "base/test/simple_test_clock.h"
|
|
#include "base/test/simple_test_tick_clock.h"
|
|
#include "net/reporting/reporting_context.h"
|
|
#include "net/reporting/reporting_delegate.h"
|
|
#include "net/reporting/reporting_uploader.h"
|
|
#include "net/test/test_with_scoped_task_environment.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
class GURL;
|
|
|
|
namespace base {
|
|
class MockTimer;
|
|
class SimpleTestClock;
|
|
class SimpleTestTickClock;
|
|
class Value;
|
|
} // namespace base
|
|
|
|
namespace url {
|
|
class Origin;
|
|
} // namespace url
|
|
|
|
namespace net {
|
|
|
|
class ReportingCache;
|
|
struct ReportingClient;
|
|
class ReportingGarbageCollector;
|
|
class TestURLRequestContext;
|
|
|
|
// Finds a particular client (by origin and endpoint) in the cache and returns
|
|
// it (or nullptr if not found).
|
|
const ReportingClient* FindClientInCache(const ReportingCache* cache,
|
|
const url::Origin& origin,
|
|
const GURL& endpoint);
|
|
|
|
// A test implementation of ReportingUploader that holds uploads for tests to
|
|
// examine and complete with a specified outcome.
|
|
class TestReportingUploader : public ReportingUploader {
|
|
public:
|
|
class PendingUpload {
|
|
public:
|
|
virtual ~PendingUpload();
|
|
|
|
virtual const GURL& url() const = 0;
|
|
virtual const std::string& json() const = 0;
|
|
virtual std::unique_ptr<base::Value> GetValue() const = 0;
|
|
|
|
virtual void Complete(Outcome outcome) = 0;
|
|
|
|
protected:
|
|
PendingUpload();
|
|
};
|
|
|
|
TestReportingUploader();
|
|
~TestReportingUploader() override;
|
|
|
|
const std::vector<std::unique_ptr<PendingUpload>>& pending_uploads() const {
|
|
return pending_uploads_;
|
|
}
|
|
|
|
// ReportingUploader implementation:
|
|
|
|
void StartUpload(const GURL& url,
|
|
const std::string& json,
|
|
int max_depth,
|
|
UploadCallback callback) override;
|
|
|
|
int GetUploadDepth(const URLRequest& request) override;
|
|
|
|
private:
|
|
std::vector<std::unique_ptr<PendingUpload>> pending_uploads_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestReportingUploader);
|
|
};
|
|
|
|
// Allows all permissions unless set_disallow_report_uploads is called; uses
|
|
// the real ReportingDelegate for JSON parsing to exercise depth and size
|
|
// limits.
|
|
class TestReportingDelegate : public ReportingDelegate {
|
|
public:
|
|
TestReportingDelegate();
|
|
|
|
// ReportingDelegate implementation:
|
|
|
|
~TestReportingDelegate() override;
|
|
|
|
void set_disallow_report_uploads(bool disallow_report_uploads) {
|
|
disallow_report_uploads_ = disallow_report_uploads;
|
|
}
|
|
|
|
void set_pause_permissions_check(bool pause_permissions_check) {
|
|
pause_permissions_check_ = pause_permissions_check;
|
|
}
|
|
|
|
bool CanQueueReport(const url::Origin& origin) const override;
|
|
|
|
void CanSendReports(std::set<url::Origin> origins,
|
|
base::OnceCallback<void(std::set<url::Origin>)>
|
|
result_callback) const override;
|
|
|
|
bool PermissionsCheckPaused() const;
|
|
void ResumePermissionsCheck();
|
|
|
|
bool CanSetClient(const url::Origin& origin,
|
|
const GURL& endpoint) const override;
|
|
|
|
bool CanUseClient(const url::Origin& origin,
|
|
const GURL& endpoint) const override;
|
|
|
|
void ParseJson(const std::string& unsafe_json,
|
|
const JsonSuccessCallback& success_callback,
|
|
const JsonFailureCallback& failure_callback) const override;
|
|
|
|
private:
|
|
std::unique_ptr<TestURLRequestContext> test_request_context_;
|
|
std::unique_ptr<ReportingDelegate> real_delegate_;
|
|
bool disallow_report_uploads_ = false;
|
|
bool pause_permissions_check_ = false;
|
|
|
|
mutable std::set<url::Origin> saved_origins_;
|
|
mutable base::OnceCallback<void(std::set<url::Origin>)>
|
|
permissions_check_callback_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestReportingDelegate);
|
|
};
|
|
|
|
// A test implementation of ReportingContext that uses test versions of
|
|
// Clock, TickClock, Timer, and ReportingUploader.
|
|
class TestReportingContext : public ReportingContext {
|
|
public:
|
|
TestReportingContext(base::Clock* clock,
|
|
const base::TickClock* tick_clock,
|
|
const ReportingPolicy& policy);
|
|
~TestReportingContext();
|
|
|
|
base::MockTimer* test_delivery_timer() { return delivery_timer_; }
|
|
base::MockTimer* test_garbage_collection_timer() {
|
|
return garbage_collection_timer_;
|
|
}
|
|
TestReportingUploader* test_uploader() {
|
|
return reinterpret_cast<TestReportingUploader*>(uploader());
|
|
}
|
|
TestReportingDelegate* test_delegate() {
|
|
return reinterpret_cast<TestReportingDelegate*>(delegate());
|
|
}
|
|
|
|
private:
|
|
int RandIntCallback(int min, int max);
|
|
|
|
int rand_counter_;
|
|
|
|
// Owned by the DeliveryAgent and GarbageCollector, respectively, but
|
|
// referenced here to preserve type:
|
|
|
|
base::MockTimer* delivery_timer_;
|
|
base::MockTimer* garbage_collection_timer_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestReportingContext);
|
|
};
|
|
|
|
// A unit test base class that provides a TestReportingContext and shorthand
|
|
// getters.
|
|
class ReportingTestBase : public TestWithScopedTaskEnvironment {
|
|
protected:
|
|
ReportingTestBase();
|
|
~ReportingTestBase() override;
|
|
|
|
void UsePolicy(const ReportingPolicy& policy);
|
|
|
|
// Simulates an embedder restart, preserving the ReportingPolicy.
|
|
//
|
|
// Advances the Clock by |delta|, and the TickClock by |delta_ticks|. Both can
|
|
// be zero or negative.
|
|
void SimulateRestart(base::TimeDelta delta, base::TimeDelta delta_ticks);
|
|
|
|
TestReportingContext* context() { return context_.get(); }
|
|
|
|
const ReportingPolicy& policy() { return context_->policy(); }
|
|
|
|
base::SimpleTestClock* clock() { return &clock_; }
|
|
base::SimpleTestTickClock* tick_clock() { return &tick_clock_; }
|
|
base::MockTimer* delivery_timer() { return context_->test_delivery_timer(); }
|
|
base::MockTimer* garbage_collection_timer() {
|
|
return context_->test_garbage_collection_timer();
|
|
}
|
|
TestReportingUploader* uploader() { return context_->test_uploader(); }
|
|
|
|
ReportingCache* cache() { return context_->cache(); }
|
|
ReportingEndpointManager* endpoint_manager() {
|
|
return context_->endpoint_manager();
|
|
}
|
|
ReportingDeliveryAgent* delivery_agent() {
|
|
return context_->delivery_agent();
|
|
}
|
|
ReportingGarbageCollector* garbage_collector() {
|
|
return context_->garbage_collector();
|
|
}
|
|
|
|
base::TimeTicks yesterday();
|
|
base::TimeTicks now();
|
|
base::TimeTicks tomorrow();
|
|
|
|
const std::vector<std::unique_ptr<TestReportingUploader::PendingUpload>>&
|
|
pending_uploads() {
|
|
return uploader()->pending_uploads();
|
|
}
|
|
|
|
private:
|
|
void CreateContext(const ReportingPolicy& policy,
|
|
base::Time now,
|
|
base::TimeTicks now_ticks);
|
|
|
|
base::SimpleTestClock clock_;
|
|
base::SimpleTestTickClock tick_clock_;
|
|
std::unique_ptr<TestReportingContext> context_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ReportingTestBase);
|
|
};
|
|
|
|
} // namespace net
|
|
|
|
#endif // NET_REPORTING_REPORTING_TEST_UTIL_H_
|