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.
5 #include "cloud_print/service/service_state.h"
7 #include "base/strings/string_util.h"
8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h"
12 using ::testing::Exactly
;
13 using ::testing::Return
;
15 TEST(ServiceStateTest
, Empty
) {
17 EXPECT_FALSE(state
.IsValid());
20 TEST(ServiceStateTest
, ToString
) {
22 EXPECT_STREQ("{\"cloud_print\": {\"enabled\": true}}",
23 base::CollapseWhitespaceASCII(state
.ToString(), true).c_str());
24 state
.set_email("test@gmail.com");
25 state
.set_proxy_id("proxy");
26 state
.set_robot_email("robot@gmail.com");
27 state
.set_robot_token("abc");
28 state
.set_auth_token("token1");
29 state
.set_xmpp_auth_token("token2");
30 EXPECT_TRUE(state
.IsValid());
31 EXPECT_STREQ("{\"cloud_print\": {\"auth_token\": \"token1\",\"email\": "
32 "\"test@gmail.com\",\"enabled\": true,\"proxy_id\": \"proxy\","
33 "\"robot_email\": \"robot@gmail.com\",\"robot_refresh_token\": "
34 "\"abc\",\"xmpp_auth_token\": \"token2\"}}",
35 base::CollapseWhitespaceASCII(state
.ToString(), true).c_str());
38 TEST(ServiceStateTest
, FromString
) {
41 EXPECT_FALSE(state
.FromString("<\"cloud_print\": {\"enabled\": true}}"));
43 EXPECT_FALSE(state
.FromString("{\"cloud_print\": {\"enabled\": true}}"));
44 EXPECT_FALSE(state
.FromString(
45 "{\"cloud_print\": {\"email\": \"test@gmail.com\"}}"));
46 EXPECT_STREQ("test@gmail.com", state
.email().c_str());
49 EXPECT_TRUE(state
.FromString(
50 "{\"cloud_print\": {\"email\": \"test2@gmail.com\",\"enabled\": true,\""
51 "proxy_id\": \"proxy\",\"robot_email\": \"robot@gmail.com\",\""
52 "robot_refresh_token\": \"abc\"}}"));
53 EXPECT_STREQ("test2@gmail.com", state
.email().c_str());
54 EXPECT_STREQ("proxy", state
.proxy_id().c_str());
55 EXPECT_STREQ("robot@gmail.com", state
.robot_email().c_str());
56 EXPECT_STREQ("abc", state
.robot_token().c_str());
59 class ServiceStateMock
: public ServiceState
{
63 MOCK_METHOD3(LoginToGoogle
,
64 std::string(const std::string
& service
,
65 const std::string
& email
,
66 const std::string
& password
));
69 DISALLOW_COPY_AND_ASSIGN(ServiceStateMock
);
72 TEST(ServiceStateTest
, Configure
) {
73 ServiceStateMock state
;
74 state
.set_email("test1@gmail.com");
75 state
.set_proxy_id("id1");
77 EXPECT_CALL(state
, LoginToGoogle("cloudprint", "test2@gmail.com", "abc"))
79 .WillOnce(Return("auth1"));
80 EXPECT_CALL(state
, LoginToGoogle("chromiumsync", "test2@gmail.com", "abc"))
82 .WillOnce(Return("auth2"));
84 EXPECT_TRUE(state
.Configure("test2@gmail.com", "abc", "id2"));
86 EXPECT_STREQ("id2", state
.proxy_id().c_str());
87 EXPECT_STREQ("auth1", state
.auth_token().c_str());
88 EXPECT_STREQ("auth2", state
.xmpp_auth_token().c_str());