VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTCidr.cpp@ 20744

Last change on this file since 20744 was 20606, checked in by vboxsync, 15 years ago

IPRT/testcase: Use RTTestInitAndCreate.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1/* $Id: tstRTCidr.cpp 20606 2009-06-15 23:49:07Z vboxsync $ */
2/** @file
3 * IPRT Testcase - IPv4.
4 */
5
6/*
7 * Copyright (C) 2008-2009 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include <iprt/cidr.h>
36
37#include <iprt/err.h>
38#include <iprt/initterm.h>
39#include <iprt/test.h>
40
41
42/*******************************************************************************
43* Defined Constants And Macros *
44*******************************************************************************/
45#define CHECKNETWORK(String, rcExpected, ExpectedNetwork, ExpectedNetMask) \
46 do { \
47 RTIPV4ADDR Network, NetMask; \
48 int rc = RTCidrStrToIPv4(String, &Network, &NetMask); \
49 if ((rcExpected) && !rc) \
50 { \
51 RTTestIFailed("at line %d: '%s': expected %Rrc got %Rrc\n", \
52 __LINE__, String, (rcExpected), rc); \
53 } \
54 else if ( (rcExpected) != rc \
55 || ( rc == VINF_SUCCESS \
56 && ( (ExpectedNetwork) != Network \
57 || (ExpectedNetMask) != NetMask))) \
58 { \
59 RTTestIFailed("at line %d: '%s': expected %Rrc got %Rrc, expected network %08x got %08x, expected netmask %08x got %08x\n", \
60 __LINE__, String, rcExpected, rc, (ExpectedNetwork), Network, (ExpectedNetMask), NetMask); \
61 } \
62 } while (0)
63
64
65int main()
66{
67 RTTEST hTest;
68 int rc = RTTestInitAndCreate("tstRTCidr", &hTest);
69 if (rc)
70 return rc;
71 RTTestBanner(hTest);
72
73 CHECKNETWORK("10.0.0/24", VINF_SUCCESS, 0x0A000000, 0xFFFFFF00);
74 CHECKNETWORK("10.0.0/8", VINF_SUCCESS, 0x0A000000, 0xFF000000);
75 CHECKNETWORK("10.0.0./24", VERR_INVALID_PARAMETER, 0, 0);
76 CHECKNETWORK("0.1.0/24", VERR_INVALID_PARAMETER, 0, 0);
77 CHECKNETWORK("10.255.0.0/24", VERR_INVALID_PARAMETER, 0, 0);
78 CHECKNETWORK("10.1234.0.0/24", VERR_INVALID_PARAMETER, 0, 0);
79 CHECKNETWORK("10.256.0.0/24", VERR_INVALID_PARAMETER, 0, 0);
80 CHECKNETWORK("10.0.0/3", VERR_INVALID_PARAMETER, 0, 0);
81 CHECKNETWORK("10.1.2.3/8", VINF_SUCCESS, 0x0A010203, 0xFF000000);
82 CHECKNETWORK("10.0.0/29", VERR_INVALID_PARAMETER, 0, 0);
83 CHECKNETWORK("10.0.0/240", VERR_INVALID_PARAMETER, 0, 0);
84 CHECKNETWORK("10.0.0/24.", VERR_INVALID_PARAMETER, 0, 0);
85 CHECKNETWORK("10.1.2/16", VINF_SUCCESS, 0x0A010200, 0xFFFF0000);
86 CHECKNETWORK("1.2.3.4", VINF_SUCCESS, 0x01020304, 0xFFFFFFFF);
87
88 return RTTestSummaryAndDestroy(hTest);
89}
90
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette