aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pulse-manager.c
blob: 169acbda3363e4af55bbedb6f74b82be6330e1c7 (plain)
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
/*
Copyright 2010 Canonical Ltd.

Authors:
    Robert Collins <robert.collins@canonical.com>
    Conor Curran <conor.curran@canonical.com>

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 warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY, 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/>.
*/

/* we test static functions */
#include "../src/pulse-manager.c"
#include "mockpulse.h"


static void test_pa_context_exit()
{
    pa_context* context = pa_context_new(NULL, "foo");
    pa_context_set_state_callback(context, context_state_callback, NULL);
    // => call context_state_callback(context, NULL);
    // pa_context_get_state is mocked to return the right FAIL flag.
    set_pa_context_get_state_result(context, PA_CONTEXT_FAILED);
    context_state_callback(context, NULL);
    // 1. test to make sure relevant variables are tidied up
    //    XXX: Conor to do.
    // 2. then using the same pa_context_get_state we could ensure the manager
    // is attempting to reconnect to PA. 
    pa_context_unref(context);
}

static void test_sink_insert()
{
    sink_info *sink_details;
    pa_context* context = pa_context_new(NULL, "foo");
    sink_details = g_new0(sink_info, 1);
    sink_details->index = 8;
    sink_details->name = "mock_sink";
    sink_details->description = "mock description";
    sink_details->mute = FALSE;
    pa_cvolume volume; // nearly full volume:
    pa_cvolume_set(&volume, 1, 30000);
    sink_details->volume = volume;
    pa_sink_info *expected = g_new0(pa_sink_info, 1);
    expected->name = g_strdup("foo");
    expected->index = 8;
    expected->description = g_strdup("more details");
    // fill it out here more.
    // hook into our pa_context_get_sink_info_by_index to pass exppected to
    // update_sink_info
    set_pa_context_get_sink_info(expected);
    // update_sink_info is a static method in pulse-manager.c ?
    pa_context_get_sink_info_by_index(context, sink_details->index, update_sink_info, NULL);
    // the mockinkg lib should then return this mocked up sink_info to the
    // method update_sink_info which tests could be wrote against to make sure
    // everthing is populated correctly. 
    pa_context_unref(context);
    g_free(expected);
}


gint main (gint argc, gchar * argv[])
{
  g_type_init();
  g_test_init(&argc, &argv, NULL);
  
  g_test_add_func("/indicator-sound/pulse-manager/sink-insert", test_sink_insert);
  g_test_add_func("/indicator-sound/pulse-manager/pa-context-exit", test_pa_context_exit);
  
  return g_test_run ();
}