Imported Upstream version 0.1.17
[platform/upstream/libnice.git] / tests / test-add-remove-stream.c
1 /*
2  * This file is part of the Nice GLib ICE library.
3  *
4  * (C) 2006, 2007 Collabora Ltd.
5  *  Contact: Dafydd Harries
6  * (C) 2006, 2007 Nokia Corporation. All rights reserved.
7  *  Contact: Kai Vehmanen
8  *
9  * The contents of this file are subject to the Mozilla Public License Version
10  * 1.1 (the "License"); you may not use this file except in compliance with
11  * the License. You may obtain a copy of the License at
12  * http://www.mozilla.org/MPL/
13  *
14  * Software distributed under the License is distributed on an "AS IS" basis,
15  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
16  * for the specific language governing rights and limitations under the
17  * License.
18  *
19  * The Original Code is the Nice GLib ICE library.
20  *
21  * The Initial Developers of the Original Code are Collabora Ltd and Nokia
22  * Corporation. All Rights Reserved.
23  *
24  * Contributors:
25  *   Dafydd Harries, Collabora Ltd.
26  *   Kai Vehmanen, Nokia
27  *
28  * Alternatively, the contents of this file may be used under the terms of the
29  * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
30  * case the provisions of LGPL are applicable instead of those above. If you
31  * wish to allow use of your version of this file only under the terms of the
32  * LGPL and not to allow others to use your version of this file under the
33  * MPL, indicate your decision by deleting the provisions above and replace
34  * them with the notice and other provisions required by the LGPL. If you do
35  * not delete the provisions above, a recipient may use your version of this
36  * file under either the MPL or the LGPL.
37  */
38 #ifdef HAVE_CONFIG_H
39 # include <config.h>
40 #endif
41
42 #include "agent.h"
43 #include "agent-priv.h"
44 #include <string.h>
45
46 int
47 main (void)
48 {
49   NiceAgent *agent;
50   NiceAddress addr;
51
52 #ifdef G_OS_WIN32
53   WSADATA w;
54   WSAStartup(0x0202, &w);
55 #endif
56   nice_address_init (&addr);
57
58   if (!nice_address_set_from_string (&addr, "127.0.0.1"))
59     g_assert_not_reached ();
60
61   agent = nice_agent_new (NULL, NICE_COMPATIBILITY_RFC5245);
62   nice_agent_add_local_address (agent, &addr);
63
64   g_assert_cmpuint (nice_agent_add_stream (agent, 1), ==, 1);
65   g_assert_cmpuint (nice_agent_add_stream (agent, 10), ==, 2);
66   g_assert_cmpuint (nice_agent_add_stream (agent, 2), ==, 3);
67
68   g_assert (NULL != agent->streams);
69
70   nice_agent_remove_stream (agent, 1);
71   nice_agent_remove_stream (agent, 2);
72   nice_agent_remove_stream (agent, 3);
73
74   g_assert (NULL == agent->streams);
75
76   g_object_unref (agent);
77 #ifdef G_OS_WIN32
78   WSACleanup();
79 #endif
80   return 0;
81 }
82