1*40e9b92eSEd Tanous // SPDX-License-Identifier: Apache-2.0
2*40e9b92eSEd Tanous // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3c33a039bSNan Zhou #include "async_resp.hpp"
4c33a039bSNan Zhou #include "google/google_service_root.hpp"
5c33a039bSNan Zhou #include "http_request.hpp"
6f0b59af4SEd Tanous #include "http_response.hpp"
7faf100f9SEd Tanous
8f0b59af4SEd Tanous #include <boost/beast/http/verb.hpp>
9faf100f9SEd Tanous #include <nlohmann/json.hpp>
10c33a039bSNan Zhou
11f0b59af4SEd Tanous #include <memory>
12f0b59af4SEd Tanous #include <system_error>
13f0b59af4SEd Tanous
14c33a039bSNan Zhou #include <gtest/gtest.h>
15c33a039bSNan Zhou
16c33a039bSNan Zhou namespace crow::google_api
17c33a039bSNan Zhou {
18c33a039bSNan Zhou namespace
19c33a039bSNan Zhou {
20c33a039bSNan Zhou
validateServiceRootGet(crow::Response & res)21c33a039bSNan Zhou void validateServiceRootGet(crow::Response& res)
22c33a039bSNan Zhou {
23c33a039bSNan Zhou nlohmann::json& json = res.jsonValue;
24c33a039bSNan Zhou EXPECT_EQ(json["@odata.id"], "/google/v1");
25c33a039bSNan Zhou EXPECT_EQ(json["@odata.type"],
26c33a039bSNan Zhou "#GoogleServiceRoot.v1_0_0.GoogleServiceRoot");
27c33a039bSNan Zhou EXPECT_EQ(json["@odata.id"], "/google/v1");
28c33a039bSNan Zhou EXPECT_EQ(json["Id"], "Google Rest RootService");
29c33a039bSNan Zhou EXPECT_EQ(json["Name"], "Google Service Root");
30c33a039bSNan Zhou EXPECT_EQ(json["Version"], "1.0.0");
31c33a039bSNan Zhou EXPECT_EQ(json["RootOfTrustCollection"]["@odata.id"],
32c33a039bSNan Zhou "/google/v1/RootOfTrustCollection");
33c33a039bSNan Zhou }
34c33a039bSNan Zhou
TEST(HandleGoogleV1Get,OnSuccess)35c33a039bSNan Zhou TEST(HandleGoogleV1Get, OnSuccess)
36c33a039bSNan Zhou {
37c33a039bSNan Zhou std::error_code ec;
38c33a039bSNan Zhou auto asyncResp = std::make_shared<bmcweb::AsyncResp>();
39c33a039bSNan Zhou
40c33a039bSNan Zhou asyncResp->res.setCompleteRequestHandler(validateServiceRootGet);
41c33a039bSNan Zhou
42c33a039bSNan Zhou crow::Request dummyRequest{{boost::beast::http::verb::get, "", 11}, ec};
43c33a039bSNan Zhou handleGoogleV1Get(dummyRequest, asyncResp);
44c33a039bSNan Zhou }
45c33a039bSNan Zhou
46c33a039bSNan Zhou } // namespace
47c33a039bSNan Zhou } // namespace crow::google_api
48