~tatokis/unity/gcc-72-errors

« back to all changes in this revision

Viewing changes to tests/test_searchbar.cpp

  • Committer: Pawel Stolowski
  • Date: 2013-05-16 10:58:57 UTC
  • mfrom: (3008.2.136 libunity-7.0-breakage)
  • mto: This revision was merged to the branch mainline in revision 3325.
  • Revision ID: pawel.stolowski@canonical.com-20130516105857-j51uiapol2zc8vr8
Merged smart scopes branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
 * Copyright (C) 2012 Canonical Ltd
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 3 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com>
 
18
 */
 
19
 
 
20
#include <gtest/gtest.h>
 
21
#include <gmock/gmock.h>
 
22
#include <unity-shared/SearchBarSpinner.h>
 
23
#include <unity-shared/DashStyle.h>
 
24
#include <unity-shared/UnitySettings.h>
 
25
#include "test_utils.h"
 
26
 
 
27
using namespace unity;
 
28
 
 
29
namespace unity
 
30
{
 
31
 
 
32
class TestSearchBar : public ::testing::Test
 
33
{
 
34
public:
 
35
  TestSearchBar() {}
 
36
 
 
37
  unity::Settings settings;
 
38
  dash::Style style;
 
39
};
 
40
 
 
41
TEST_F(TestSearchBar, TestSearchBarSpinnerTimeout)
 
42
{
 
43
  SearchBarSpinner search_bar;
 
44
  search_bar.SetSpinnerTimeout(50);
 
45
  search_bar.SetState(STATE_SEARCHING);
 
46
 
 
47
  ASSERT_TRUE(search_bar.GetState() == STATE_SEARCHING);
 
48
 
 
49
  Utils::WaitUntilMSec([&search_bar] {return search_bar.GetState() == STATE_READY;}, true, 100);
 
50
}
 
51
 
 
52
TEST_F(TestSearchBar, TestSearchBarSpinnerNoTimeout)
 
53
{
 
54
  SearchBarSpinner search_bar;
 
55
  search_bar.SetSpinnerTimeout(-1);
 
56
  search_bar.SetState(STATE_SEARCHING);
 
57
 
 
58
  ASSERT_TRUE(search_bar.GetState() == STATE_SEARCHING);
 
59
 
 
60
  Utils::WaitUntilMSec([&search_bar] {return search_bar.GetState() == STATE_READY;}, false, 100);
 
61
}
 
62
 
 
63
}