tests: Add more tests for the address pool

This commit is contained in:
Olivier Crête 2013-02-12 16:34:37 -05:00 committed by Wim Taymans
parent 456f4367e3
commit 2581cc103c

View file

@ -24,12 +24,18 @@
GST_START_TEST (test_pool)
{
GstRTSPAddressPool *pool;
GstRTSPAddress *addr;
GstRTSPAddress *addr, *addr2;
pool = gst_rtsp_address_pool_new ();
fail_if (gst_rtsp_address_pool_add_range (pool,
"233.252.0.1", "233.252.0.0", 5000, 5010, 1));
fail_if (gst_rtsp_address_pool_add_range (pool,
"233.252.0.1", "::1", 5000, 5010, 1));
fail_if (gst_rtsp_address_pool_add_range (pool,
"233.252.0.1.1", "233.252.0.1", 5000, 5010, 1));
fail_if (gst_rtsp_address_pool_add_range (pool,
"233.252.0.1", "233.252.0.1.1", 5000, 5010, 1));
ASSERT_CRITICAL (gst_rtsp_address_pool_add_range (pool,
"233.252.0.0", "233.252.0.1", 5010, 5000, 1));
@ -47,13 +53,65 @@ GST_START_TEST (test_pool)
addr = gst_rtsp_address_pool_acquire_address (pool, 0, 2);
fail_unless (addr != NULL);
addr2 = gst_rtsp_address_copy (addr);
gst_rtsp_address_free (addr2);
gst_rtsp_address_free (addr);
addr = gst_rtsp_address_pool_acquire_address (pool, 0, 4);
fail_unless (addr != NULL);
/* Will fail because pool is NULL */
ASSERT_CRITICAL (gst_rtsp_address_pool_clear (NULL));
/* will fail because an address is allocated */
ASSERT_CRITICAL (gst_rtsp_address_pool_clear (pool));
gst_rtsp_address_free (addr);
gst_rtsp_address_pool_clear (pool);
/* start with odd port to make sure we are allocated address
* starting with even port
*/
fail_unless (gst_rtsp_address_pool_add_range (pool,
"2001:DB8::1", "2001:DB8::1", 5001, 5003, 1));
addr = gst_rtsp_address_pool_acquire_address (pool,
GST_RTSP_ADDRESS_FLAG_IPV6 | GST_RTSP_ADDRESS_FLAG_EVEN_PORT, 2);
fail_unless (addr != NULL);
fail_unless (addr->port == 5002);
/* Will fail becuse there is only one IPv6 address left */
addr2 = gst_rtsp_address_pool_acquire_address (pool,
GST_RTSP_ADDRESS_FLAG_IPV6, 2);
fail_unless (addr2 == NULL);
/* Will fail because the only IPv6 address left has an odd port */
addr2 = gst_rtsp_address_pool_acquire_address (pool,
GST_RTSP_ADDRESS_FLAG_IPV6 | GST_RTSP_ADDRESS_FLAG_EVEN_PORT, 1);
fail_unless (addr2 == NULL);
gst_rtsp_address_free (addr);
gst_rtsp_address_pool_clear (pool);
fail_unless (gst_rtsp_address_pool_add_range (pool,
"233.252.0.0", "233.252.0.255", 5000, 5002, 1));
addr = gst_rtsp_address_pool_acquire_address (pool,
GST_RTSP_ADDRESS_FLAG_EVEN_PORT, 2);
fail_unless (addr != NULL);
fail_unless (addr->port == 5000);
addr2 = gst_rtsp_address_pool_acquire_address (pool,
GST_RTSP_ADDRESS_FLAG_EVEN_PORT, 2);
fail_unless (addr2 != NULL);
fail_unless (addr2->port == 5000);
gst_rtsp_address_free (addr);
gst_rtsp_address_free (addr2);
g_object_unref (pool);
}