~compiz-team/compiz/0.9.10

« back to all changes in this revision

Viewing changes to src/servergrab/tests/test-servergrab.cpp

  • Committer: Daniel van Vugt
  • Author(s): smspillaz
  • Date: 2012-06-06 05:12:28 UTC
  • mfrom: (3221.2.17 pixmap)
  • Revision ID: daniel.van.vugt@canonical.com-20120606051228-oh5x09genim3x7nn
Adds some tests for the pixmap rebinding code ... which also means some
refactoring was done.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2012 Canonical Ltd.
 
3
 *
 
4
 * Permission to use, copy, modify, distribute, and sell this software
 
5
 * and its documentation for any purpose is hereby granted without
 
6
 * fee, provided that the above copyright notice appear in all copies
 
7
 * and that both that copyright notice and this permission notice
 
8
 * appear in supporting documentation, and that the name of
 
9
 * Canonical Ltd. not be used in advertising or publicity pertaining to
 
10
 * distribution of the software without specific, written prior permission.
 
11
 * Canonical Ltd. makes no representations about the suitability of this
 
12
 * software for any purpose. It is provided "as is" without express or
 
13
 * implied warranty.
 
14
 *
 
15
 * CANONICAL, LTD. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 
16
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
 
17
 * NO EVENT SHALL CANONICAL, LTD. BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 
18
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
 
19
 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
 
20
 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
 
21
 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
22
 *
 
23
 * Authored by: Sam Spilsbury <sam.spilsbury@canonical.com>
 
24
 */
 
25
 
 
26
#include <gtest/gtest.h>
 
27
#include <gmock/gmock.h>
 
28
#include <core/servergrab.h>
 
29
 
 
30
class MockServerGrab :
 
31
    public ServerGrabInterface
 
32
{
 
33
    public:
 
34
 
 
35
        MOCK_METHOD0 (grabServer, void ());
 
36
        MOCK_METHOD0 (ungrabServer, void ());
 
37
        MOCK_METHOD0 (syncServer, void ());
 
38
};
 
39
 
 
40
class ServerGrabTest :
 
41
    public ::testing::Test
 
42
{
 
43
};
 
44
 
 
45
TEST(ServerGrabTest, TestServerGrab)
 
46
{
 
47
    MockServerGrab msg;
 
48
 
 
49
    EXPECT_CALL (msg, grabServer ());
 
50
    EXPECT_CALL (msg, syncServer ()).Times (2);
 
51
 
 
52
    ServerLock l (&msg);
 
53
 
 
54
    EXPECT_CALL (msg, ungrabServer ());
 
55
}