chromium/tools/json_schema_compiler/test/additional_properties_unittest.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "tools/json_schema_compiler/test/additional_properties.h"

#include <memory>
#include <utility>
#include <vector>

#include "testing/gtest/include/gtest/gtest.h"

namespace ap = test::api::additional_properties;

TEST() {
  {
    base::Value::List list_value;
    list_value.Append("asdf");
    list_value.Append(4);
    base::Value::Dict type_value;
    type_value.Set("string", "value");
    type_value.Set("other", 9);
    type_value.Set("another", std::move(list_value));
    auto type = ap::AdditionalPropertiesType::FromValue(type_value);
    ASSERT_TRUE();
    EXPECT_EQ();
  }
  {
    base::Value::Dict type_dict;
    type_dict.Set("string", 3);
    auto type = ap::AdditionalPropertiesType::FromValue(type_dict);
    EXPECT_FALSE();
  }
}

TEST() {
  base::Value::Dict param_object_dict;
  param_object_dict.Set("str", "a");
  param_object_dict.Set("num", 1);
  base::Value param_object_value(std::move(param_object_dict));
  base::Value::List params_value;
  params_value.Append(param_object_value.Clone());
  std::optional<ap::AdditionalProperties::Params> params(
      ap::AdditionalProperties::Params::Create(params_value));
  EXPECT_TRUE();
  EXPECT_EQ();
}

TEST() {
  ap::ReturnAdditionalProperties::Results::ResultObject result_object;
  result_object.integer = 5;
  result_object.additional_properties["key"] = "value";

  base::Value::List expected;
  {
    base::Value::Dict dict;
    dict.Set("integer", 5);
    dict.Set("key", "value");
    expected.Append(std::move(dict));
  }

  EXPECT_EQ();
}