summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2020-06-23 17:32:39 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2020-07-21 20:03:09 -0400
commit8fe72dce88d511d8c770033e196fd283317261b1 (patch)
treed9723ae1d99efab7a02336aca7794d00149ff092 /tests
parent0b3d9f346867409e7b1b5646bd63fe3bdfaff772 (diff)
downloadlibnice-8fe72dce88d511d8c770033e196fd283317261b1.tar.gz
agent: Accept duplicated ports if no other option
Commit a04fa4d492 introduced a new feature to try to have a different port for every local candidate, even if they are on different interfaces. This breaks setups where the application really wants a specific port and sets a range of exactly 1 port or a very small range. In that case, if we can't find non-duplicated ports, then we just go around again and skip that check, but only if both ports are in the same stream and component. Otherwise, we fail the whole component!
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build1
-rw-r--r--tests/test-set-port-range.c64
2 files changed, 65 insertions, 0 deletions
diff --git a/tests/meson.build b/tests/meson.build
index b6d5a03..65ac23a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -28,6 +28,7 @@ nice_tests = [
'test-drop-invalid',
'test-nomination',
'test-interfaces',
+ 'test-set-port-range'
]
if cc.has_header('arpa/inet.h')
diff --git a/tests/test-set-port-range.c b/tests/test-set-port-range.c
new file mode 100644
index 0000000..4a19121
--- /dev/null
+++ b/tests/test-set-port-range.c
@@ -0,0 +1,64 @@
+/*
+ * This file is part of the Nice GLib ICE library.
+ *
+ * Unit test for ICE full-mode related features.
+ *
+ * (C)2020 Collabora Ltd
+ * @author: Olivier Crete <olivier.crete@collabora.com>
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ *
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
+ * case the provisions of LGPL are applicable instead of those above. If you
+ * wish to allow use of your version of this file only under the terms of the
+ * LGPL and not to allow others to use your version of this file under the
+ * MPL, indicate your decision by deleting the provisions above and replace
+ * them with the notice and other provisions required by the LGPL. If you do
+ * not delete the provisions above, a recipient may use your version of this
+ * file under either the MPL or the LGPL.
+ */
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include "agent.h"
+
+#include <stdlib.h>
+#include <string.h>
+
+int main (int argc, char **argv)
+{
+ NiceAgent *agent;
+ guint stream1;
+
+#ifdef G_OS_WIN32
+ WSADATA w;
+
+ WSAStartup(0x0202, &w);
+#endif
+
+ agent = nice_agent_new (NULL, NICE_COMPATIBILITY_RFC5245);
+
+ stream1 = nice_agent_add_stream (agent, 1);
+
+ nice_agent_set_port_range (agent, stream1, 1, 8888, 8888);
+ nice_agent_gather_candidates (agent, stream1);
+
+ g_object_unref (agent);
+
+#ifdef G_OS_WIN32
+ WSACleanup();
+#endif
+ return 0;
+} \ No newline at end of file