Try to work around that clang/win bug in another file.
[chromium-blink-merge.git] / tools / gn / value_unittest.cc
blobf934e6601812ec48e3caf8b6c8592a83bd3de12f
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "testing/gtest/include/gtest/gtest.h"
6 #include "tools/gn/test_with_scope.h"
7 #include "tools/gn/value.h"
9 TEST(Value, ToString) {
10 Value strval(nullptr, "hi\" $me\\you\\$\\\"");
11 EXPECT_EQ("hi\" $me\\you\\$\\\"", strval.ToString(false));
12 EXPECT_EQ("\"hi\\\" \\$me\\you\\\\\\$\\\\\\\"\"", strval.ToString(true));
14 // crbug.com/470217
15 Value strval2(nullptr, "\\foo\\\\bar\\");
16 EXPECT_EQ("\"\\foo\\\\\\bar\\\\\"", strval2.ToString(true));
18 // Void type.
19 EXPECT_EQ("<void>", Value().ToString(false));
21 // Test lists, bools, and ints.
22 Value listval(nullptr, Value::LIST);
23 listval.list_value().push_back(Value(nullptr, "hi\"me"));
24 listval.list_value().push_back(Value(nullptr, true));
25 listval.list_value().push_back(Value(nullptr, false));
26 listval.list_value().push_back(Value(nullptr, static_cast<int64>(42)));
27 // Printing lists always causes embedded strings to be quoted (ignoring the
28 // quote flag), or else they wouldn't make much sense.
29 EXPECT_EQ("[\"hi\\\"me\", true, false, 42]", listval.ToString(false));
30 EXPECT_EQ("[\"hi\\\"me\", true, false, 42]", listval.ToString(true));
32 // Scopes.
33 TestWithScope setup;
34 Scope* scope = new Scope(setup.scope());
35 Value scopeval(nullptr, scoped_ptr<Scope>(scope));
36 EXPECT_EQ("{ }", scopeval.ToString(false));
38 scope->SetValue("a", Value(nullptr, static_cast<int64>(42)), nullptr);
39 scope->SetValue("b", Value(nullptr, "hello, world"), nullptr);
40 EXPECT_EQ("{\n a = 42\n b = \"hello, world\"\n}", scopeval.ToString(false));