agent: Remove useless checks from priv_add_remote_candidate
[sipe-libnice.git] / tests / test-add-remove-stream.c
blobaf797c4e9c7daf3a3a8058fb1c06bfc75dd89306
1 /*
2 * This file is part of the Nice GLib ICE library.
4 * (C) 2006, 2007 Collabora Ltd.
5 * Contact: Dafydd Harries
6 * (C) 2006, 2007 Nokia Corporation. All rights reserved.
7 * Contact: Kai Vehmanen
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/
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.
19 * The Original Code is the Nice GLib ICE library.
21 * The Initial Developers of the Original Code are Collabora Ltd and Nokia
22 * Corporation. All Rights Reserved.
24 * Contributors:
25 * Dafydd Harries, Collabora Ltd.
26 * Kai Vehmanen, Nokia
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.
38 #ifdef HAVE_CONFIG_H
39 # include <config.h>
40 #endif
42 #include "agent.h"
43 #include "agent-priv.h"
44 #include <string.h>
46 int
47 main (void)
49 NiceAgent *agent;
50 NiceAddress addr;
52 nice_address_init (&addr);
53 g_type_init ();
54 g_thread_init (NULL);
57 if (!nice_address_set_from_string (&addr, "127.0.0.1"))
58 g_assert_not_reached ();
60 agent = nice_agent_new (NULL, NICE_COMPATIBILITY_RFC5245);
61 nice_agent_add_local_address (agent, &addr);
63 g_assert (nice_agent_add_stream (agent, 1) == 1);
64 g_assert (nice_agent_add_stream (agent, 10) == 2);
65 g_assert (nice_agent_add_stream (agent, 2) == 3);
67 g_assert (NULL != agent->streams);
69 nice_agent_remove_stream (agent, 1);
70 nice_agent_remove_stream (agent, 2);
71 nice_agent_remove_stream (agent, 3);
73 g_assert (NULL == agent->streams);
75 g_object_unref (agent);
77 return 0;