summaryrefslogtreecommitdiffstats
path: root/chromium/components/policy/test_support/failing_request_handler.h
blob: 7b5f2842f2d1d1af37920aac8aca1134b05a8dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2021 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 COMPONENTS_POLICY_TEST_SUPPORT_FAILING_REQUEST_HANDLER_H_
#define COMPONENTS_POLICY_TEST_SUPPORT_FAILING_REQUEST_HANDLER_H_

#include "components/policy/test_support/embedded_policy_test_server.h"
#include "net/http/http_status_code.h"

namespace policy {

// Handler that always returns specified error code for a given request type.
class FailingRequestHandler : public EmbeddedPolicyTestServer::RequestHandler {
 public:
  FailingRequestHandler(ClientStorage* client_storage,
                        PolicyStorage* policy_storage,
                        const std::string& request_type,
                        net::HttpStatusCode error_code);
  FailingRequestHandler(FailingRequestHandler&& handler) = delete;
  FailingRequestHandler& operator=(FailingRequestHandler&& handler) = delete;
  ~FailingRequestHandler() override;

  // EmbeddedPolicyTestServer::RequestHandler:
  std::string RequestType() override;
  std::unique_ptr<net::test_server::HttpResponse> HandleRequest(
      const net::test_server::HttpRequest& request) override;

 private:
  std::string request_type_;
  net::HttpStatusCode error_code_;
};

}  // namespace policy

#endif  // COMPONENTS_POLICY_TEST_SUPPORT_FAILING_REQUEST_HANDLER_H_