6f657b4aca0c61d396e2dd640590f9fd59c13495
[platform/upstream/libnice.git] / random / test.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 <string.h>
43
44 #include "random-glib.h"
45
46 #define TEST_RNGSIZE 256
47
48 int
49 main (void)
50 {
51   NiceRNG *rng;
52   gchar buf[TEST_RNGSIZE];
53
54   buf[TEST_RNGSIZE - 1] = '\0';
55
56   nice_rng_set_new_func (nice_rng_glib_new_predictable);
57   rng = nice_rng_new ();
58
59   nice_rng_generate_bytes_print (rng, TEST_RNGSIZE - 1, buf);
60   /* g_debug ("%s", buf); */
61   g_assert_cmpstr (buf, ==, "sv1AD7DnJTVykXGYYM6BmnXuYRlZNIJUzQzF+PvASjYxzdTTOngBJ5/gfK0Xj+Ly3ciAAk1Fmo0RPEpq6f4BBnp5jm3LuSbAOj1M5qULEGEv/0DMk0oOPUj6XPN1VwxFpjAfFeAxykiwdDiqNwnVJ/AKyr6/X7C5i+je7DSujURybOp6BkKWroLCzQg2AmTuqz48oNeY9CDeirNwoITfIaC40Ds9OgEDtL8WN5tL4QYdVuZQ85219Thogk775GV");
62
63   nice_rng_generate_bytes (rng, 4, buf);
64   buf[4] = 0;
65   g_assert_cmpstr (buf, ==, "\x1f\x0d\x47\xb8");
66
67   nice_rng_free (rng);
68   return 0;
69 }
70