~townsend/unity/fix-lp1301394-trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
 * Copyright (C) 2013 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Marco Trevisan (TreviƱo) <marco.trevisan@canonical.com>
 */

#include <gmock/gmock.h>
#include "SessionButton.h"

using namespace unity::session;

namespace unity
{
namespace session
{

struct TestSessionButton : testing::Test
{
  struct ButtonWrap : Button
  {
    ButtonWrap() : Button(Action::LOCK) {}

    using Button::AcceptKeyNavFocusOnMouseEnter;
    using Button::AcceptKeyNavFocusOnMouseDown;
    using Button::image_view_;
    using Button::highlight_tex_;
    using Button::normal_tex_;
    using Button::label_view_;
  };

  ButtonWrap button;
};

TEST_F(TestSessionButton, Construct)
{
  EXPECT_EQ(button.action(), Button::Action::LOCK);
  EXPECT_FALSE(button.highlighted());
  EXPECT_TRUE(button.AcceptKeyNavFocusOnMouseEnter());
  EXPECT_FALSE(button.AcceptKeyNavFocusOnMouseDown());
}

TEST_F(TestSessionButton, HighlightUpdatesTextures)
{
  button.highlighted = true;
  EXPECT_EQ(button.image_view_->texture(), button.highlight_tex_);
}

TEST_F(TestSessionButton, HighlightShowsText)
{
  button.highlighted = true;
  EXPECT_NE(button.label_view_->GetTextColor(), nux::color::Transparent);
}

TEST_F(TestSessionButton, UnHighlightUpdatesTextures)
{
  button.highlighted = true;
  button.highlighted = false;
  EXPECT_EQ(button.image_view_->texture(), button.normal_tex_);
}

TEST_F(TestSessionButton, UnHighlightHidesText)
{
  button.highlighted = true;
  button.highlighted = false;
  EXPECT_EQ(button.label_view_->GetTextColor(), nux::color::Transparent);
}

TEST_F(TestSessionButton, MouseEnterHighlights)
{
  button.mouse_enter.emit(0, 0, 0, 0);
  EXPECT_TRUE(button.highlighted());
}

TEST_F(TestSessionButton, MouseLeaveUnhighlights)
{
  button.highlighted = true;
  button.mouse_leave.emit(0, 0, 0, 0);
  EXPECT_FALSE(button.highlighted());
}

TEST_F(TestSessionButton, MouseClickActivatesIt)
{
  bool activated = false;
  button.activated.connect([&activated] { activated = true; });
  button.mouse_click.emit(0, 0, 0, 0);
  EXPECT_TRUE(activated);
}

TEST_F(TestSessionButton, KeyFocusBeginHighlights)
{
  button.begin_key_focus.emit();
  EXPECT_TRUE(button.highlighted());
}

TEST_F(TestSessionButton, KeyFocusEndUnhighlights)
{
  button.highlighted = true;
  button.end_key_focus.emit();
  EXPECT_FALSE(button.highlighted());
}

TEST_F(TestSessionButton, KeyFocusActivatesIt)
{
  bool activated = false;
  button.activated.connect([&activated] { activated = true; });
  button.key_nav_focus_activate.emit(&button);
  EXPECT_TRUE(activated);
}

// Action typed buttons tests

struct ActionButton : public testing::TestWithParam<Button::Action> {
  ActionButton()
    : button(GetParam())
  {}

  std::string GetExpectedLabel()
  {
    switch (GetParam())
    {
      case Button::Action::LOCK:
        return "Lock";
      case Button::Action::LOGOUT:
        return "Log Out";
      case Button::Action::SUSPEND:
        return "Suspend";
      case Button::Action::HIBERNATE:
        return "Hibernate";
      case Button::Action::SHUTDOWN:
        return "Shut Down";
      case Button::Action::REBOOT:
        return "Restart";
    }

    return "";
  }

  Button button;
};

INSTANTIATE_TEST_CASE_P(TestSessionButtonTypes, ActionButton,
  testing::Values(Button::Action::LOCK, Button::Action::LOGOUT, Button::Action::SUSPEND,
                  Button::Action::HIBERNATE, Button::Action::SHUTDOWN, Button::Action::REBOOT));

TEST_P(/*TestSessionButtonTypes*/ActionButton, Label)
{
  EXPECT_EQ(button.label(), GetExpectedLabel());
}

TEST_P(/*TestSessionButtonTypes*/ActionButton, Action)
{
  EXPECT_EQ(button.action(), GetParam());
}

} // session
} // unity