Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
298cd4b5
Commit
298cd4b5
authored
Mar 02, 2020
by
Fabrice Bellet
Committed by
Olivier Crête
Mar 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: add a unit test for private addresses ranges
This is a unix-only test
parent
18145b31
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
112 additions
and
1 deletion
+112
-1
tests/Makefile.am
tests/Makefile.am
+4
-1
tests/meson.build
tests/meson.build
+1
-0
tests/test-interfaces.c
tests/test-interfaces.c
+107
-0
No files found.
tests/Makefile.am
View file @
298cd4b5
...
@@ -56,7 +56,8 @@ check_PROGRAMS = \
...
@@ -56,7 +56,8 @@ check_PROGRAMS = \
test-credentials
\
test-credentials
\
test-turn
\
test-turn
\
test-drop-invalid
\
test-drop-invalid
\
test-nomination
test-nomination
\
test-interfaces
dist_check_SCRIPTS
=
\
dist_check_SCRIPTS
=
\
check-test-fullmode-with-stun.sh
\
check-test-fullmode-with-stun.sh
\
...
@@ -139,6 +140,8 @@ test_nomination_LDADD = $(COMMON_LDADD)
...
@@ -139,6 +140,8 @@ test_nomination_LDADD = $(COMMON_LDADD)
test_gstreamer_CFLAGS
=
$(AM_CFLAGS)
$(GST_CHECK_CFLAGS)
test_gstreamer_CFLAGS
=
$(AM_CFLAGS)
$(GST_CHECK_CFLAGS)
test_gstreamer_LDADD
=
-lnice
-L
$(top_builddir)
/nice/.libs
$(GLIB_LIBS)
$(GUPNP_LIBS)
$(GST_CHECK_LIBS)
$(GST_LIBS)
test_gstreamer_LDADD
=
-lnice
-L
$(top_builddir)
/nice/.libs
$(GLIB_LIBS)
$(GUPNP_LIBS)
$(GST_CHECK_LIBS)
$(GST_LIBS)
test_interfaces_LDADD
=
$(COMMON_LDADD)
all-local
:
all-local
:
chmod
a+x
$(srcdir)
/check-test-fullmode-with-stun.sh
chmod
a+x
$(srcdir)
/check-test-fullmode-with-stun.sh
chmod
a+x
$(srcdir)
/test-pseudotcp-random.sh
chmod
a+x
$(srcdir)
/test-pseudotcp-random.sh
...
...
tests/meson.build
View file @
298cd4b5
...
@@ -27,6 +27,7 @@ nice_tests = [
...
@@ -27,6 +27,7 @@ nice_tests = [
'test-turn',
'test-turn',
'test-drop-invalid',
'test-drop-invalid',
'test-nomination',
'test-nomination',
'test-interfaces',
]
]
if cc.has_header('arpa/inet.h')
if cc.has_header('arpa/inet.h')
...
...
tests/test-interfaces.c
0 → 100644
View file @
298cd4b5
/*
* This file is part of the Nice GLib ICE library.
*
* (C) 2020 Fabrice Bellet <fabrice@bellet.info>
*
* 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.
*
* The Original Code is the Nice GLib ICE library.
*
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
*
* 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 <string.h>
#include <address.h>
#include "../agent/interfaces.c"
#ifdef G_OS_UNIX
static
void
test_ipv4
(
void
)
{
NiceAddress
addr
;
union
{
struct
sockaddr
addr
;
struct
sockaddr_in
in
;
struct
sockaddr_in6
in6
;
}
sin
;
/* test private addresses */
nice_address_set_from_string
(
&
addr
,
"10.1.2.3"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
));
nice_address_set_from_string
(
&
addr
,
"172.22.22.22"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
));
nice_address_set_from_string
(
&
addr
,
"192.168.122.1"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
));
nice_address_set_from_string
(
&
addr
,
"169.254.1.2"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
));
/* test public addresses */
nice_address_set_from_string
(
&
addr
,
"1.2.3.4"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
)
==
FALSE
);
}
static
void
test_ipv6
(
void
)
{
NiceAddress
addr
;
union
{
struct
sockaddr
addr
;
struct
sockaddr_in
in
;
struct
sockaddr_in6
in6
;
}
sin
;
/* test private addresses */
nice_address_set_from_string
(
&
addr
,
"fe8f:2233:4455:6677:8899:aabb:ccdd:eeff"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
));
/* test public addresses */
nice_address_set_from_string
(
&
addr
,
"11:2233:4455:6677:8899:aabb:ccdd:eeff"
);
nice_address_copy_to_sockaddr
(
&
addr
,
&
sin
.
addr
);
g_assert
(
nice_interfaces_is_private_ip
(
&
sin
.
addr
)
==
FALSE
);
}
#endif
/* G_OS_UNIX */
int
main
(
void
)
{
#ifdef G_OS_UNIX
test_ipv4
();
test_ipv6
();
#endif
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment