~unity8-desktop-session-team/indicator-session/indicator-session-using-upstart

« back to all changes in this revision

Viewing changes to tests/backend-dbus/mock-user.h

  • Committer: Charles Kerr
  • Date: 2012-07-06 20:11:40 UTC
  • Revision ID: charles.kerr@canonical.com-20120706201140-q0n8a8jo68dpsmwu
if tests aren't explicitly requested, don't fail the build if dbus-test-runner isn't installed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2013 Canonical Ltd.
3
 
 *
4
 
 * Authors:
5
 
 *   Charles Kerr <charles.kerr@canonical.com>
6
 
 *
7
 
 * This program is free software: you can redistribute it and/or modify it
8
 
 * under the terms of the GNU General Public License version 3, as published
9
 
 * by the Free Software Foundation.
10
 
 *
11
 
 * This program is distributed in the hope that it will be useful, but
12
 
 * WITHOUT ANY WARRANTY; without even the implied warranties of
13
 
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
14
 
 * PURPOSE.  See the GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License along
17
 
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
18
 
 */
19
 
 
20
 
#ifndef MOCK_USER_H
21
 
#define MOCK_USER_H
22
 
 
23
 
#include "mock-object.h" // parent class
24
 
#include "backend-dbus/dbus-user.h" // AccountsUser
25
 
 
26
 
class MockUser: public MockObject
27
 
{
28
 
  protected:
29
 
 
30
 
    static guint get_next_uid ();
31
 
 
32
 
  public:
33
 
 
34
 
    MockUser (GMainLoop       * loop,
35
 
              GDBusConnection * bus_connection,
36
 
              const char      * userName,
37
 
              const char      * realName,
38
 
              guint64           login_frequency,
39
 
              guint             uid = get_next_uid());
40
 
    virtual ~MockUser ();
41
 
 
42
 
    const char * username () const;
43
 
    const char * realname () const;
44
 
    void set_realname (const char *);
45
 
    guint uid () const;
46
 
    guint64 login_frequency () const;
47
 
    //bool system_account() const;
48
 
 
49
 
    bool is_guest() const;
50
 
    void set_system_account (gboolean b);
51
 
 
52
 
  private:
53
 
 
54
 
    AccountsUser * my_skeleton;
55
 
};
56
 
 
57
 
#endif