1 // Copyright (c) 2012 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.
8 #include "base/message_loop/message_loop.h"
9 #include "base/sys_info.h"
10 #include "sync/util/get_session_name.h"
11 #include "testing/gtest/include/gtest/gtest.h"
13 #if defined(OS_CHROMEOS)
14 #include "base/command_line.h"
15 #include "chromeos/chromeos_switches.h"
22 class GetSessionNameTest
: public ::testing::Test
{
24 void SetSessionNameAndQuit(const std::string
& session_name
) {
25 session_name_
= session_name
;
30 base::MessageLoop message_loop_
;
31 std::string session_name_
;
34 // Call GetSessionNameSynchronouslyForTesting and make sure its return
36 TEST_F(GetSessionNameTest
, GetSessionNameSynchronously
) {
37 const std::string
& session_name
= GetSessionNameSynchronouslyForTesting();
38 EXPECT_FALSE(session_name
.empty());
41 #if defined(OS_CHROMEOS)
43 // Call GetSessionNameSynchronouslyForTesting on ChromeOS where the board type
44 // is "lumpy-signed-mp-v2keys" and make sure the return value is "Chromebook".
45 TEST_F(GetSessionNameTest
, GetSessionNameSynchronouslyChromebook
) {
46 const char* kLsbRelease
= "CHROMEOS_RELEASE_BOARD=lumpy-signed-mp-v2keys\n";
47 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease
, base::Time());
48 const std::string
& session_name
= GetSessionNameSynchronouslyForTesting();
49 EXPECT_EQ("Chromebook", session_name
);
52 // Call GetSessionNameSynchronouslyForTesting on ChromeOS where the board type
53 // is "stumpy-signed-mp-v2keys" and make sure the return value is "Chromebox".
54 TEST_F(GetSessionNameTest
, GetSessionNameSynchronouslyChromebox
) {
55 const char* kLsbRelease
= "CHROMEOS_RELEASE_BOARD=stumpy-signed-mp-v2keys\n";
56 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease
, base::Time());
57 const std::string
& session_name
= GetSessionNameSynchronouslyForTesting();
58 EXPECT_EQ("Chromebox", session_name
);
63 // Calls GetSessionName and runs the message loop until it comes back
64 // with a session name. Makes sure the returned session name is equal
65 // to the return value of GetSessionNameSynchronouslyForTesting().
66 TEST_F(GetSessionNameTest
, GetSessionName
) {
67 GetSessionName(message_loop_
.message_loop_proxy(),
68 base::Bind(&GetSessionNameTest::SetSessionNameAndQuit
,
69 base::Unretained(this)));
71 EXPECT_EQ(session_name_
, GetSessionNameSynchronouslyForTesting());