VirtualBox

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

Last change on this file since 39091 was 29845, checked in by vboxsync, 14 years ago

tstRTCidr: nits

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.4 KB
Line 
1/* $Id: tstRTCidr.cpp 29845 2010-05-27 11:29:36Z vboxsync $ */
2/** @file
3 * IPRT Testcase - IPv4.
4 */
5
6/*
7 * Copyright (C) 2008-2009 Oracle Corporation
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
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/cidr.h>
32
33#include <iprt/err.h>
34#include <iprt/initterm.h>
35#include <iprt/test.h>
36
37
38/*******************************************************************************
39* Defined Constants And Macros *
40*******************************************************************************/
41#define CHECKNETWORK(String, rcExpected, ExpectedNetwork, ExpectedNetMask) \
42 do { \
43 RTIPV4ADDR Network, NetMask; \
44 int rc2 = RTCidrStrToIPv4(String, &Network, &NetMask); \
45 if ((rcExpected) && !rc2) \
46 { \
47 RTTestIFailed("at line %d: '%s': expected %Rrc got %Rrc\n", \
48 __LINE__, String, (rcExpected), rc2); \
49 } \
50 else if ( (rcExpected) != rc2 \
51 || ( rc2 == VINF_SUCCESS \
52 && ( (ExpectedNetwork) != Network \
53 || (ExpectedNetMask) != NetMask))) \
54 { \
55 RTTestIFailed("at line %d: '%s': expected %Rrc got %Rrc, expected network %08x got %08x, expected netmask %08x got %08x\n", \
56 __LINE__, String, rcExpected, rc2, (ExpectedNetwork), Network, (ExpectedNetMask), NetMask); \
57 } \
58 } while (0)
59
60
61int main()
62{
63 RTTEST hTest;
64 int rc = RTTestInitAndCreate("tstRTCidr", &hTest);
65 if (rc)
66 return rc;
67 RTTestBanner(hTest);
68
69 CHECKNETWORK("10.0.0/45", VERR_INVALID_PARAMETER, 0, 0);
70 CHECKNETWORK("10.0.0/-45", VERR_INVALID_PARAMETER, 0, 0);
71 CHECKNETWORK("10.0.0/24", VINF_SUCCESS, 0x0A000000, 0xFFFFFF00);
72 CHECKNETWORK("10..0.0/24", VERR_INVALID_PARAMETER, 0, 0);
73 CHECKNETWORK(".10.0.0/24", VERR_INVALID_PARAMETER, 0, 0);
74 CHECKNETWORK("10.0.0//24", VERR_INVALID_PARAMETER, 0, 0);
75 CHECKNETWORK("10.0.0/8", VINF_SUCCESS, 0x0A000000, 0xFF000000);
76 CHECKNETWORK("10.0.0./24", VERR_INVALID_PARAMETER, 0, 0);
77 CHECKNETWORK("0.1.0/24", VERR_INVALID_PARAMETER, 0, 0);
78 /* RFC 4632 s3.1: n.n.n.0/24, where n is an 8-bit decimal octet value*/
79 CHECKNETWORK("10.255.0.0/24", VINF_SUCCESS, 0x0AFF0000, 0xFFFFFF00);
80 CHECKNETWORK("10.1234.0.0/24", VERR_INVALID_PARAMETER, 0, 0);
81 CHECKNETWORK("10.256.0.0/24", VERR_INVALID_PARAMETER, 0, 0);
82 CHECKNETWORK("10.0.0/3", VERR_INVALID_PARAMETER, 0, 0);
83 /* RFC 4632 s3.1: legacy "Class A" is n.0.0.0/8 */
84 CHECKNETWORK("10.1.2.3/8", VERR_INVALID_PARAMETER, 0, 0);
85 CHECKNETWORK("10.1.2.4/30", VINF_SUCCESS, 0x0A010204, 0xFFFFFFFC);
86 CHECKNETWORK("10.0.0/29", VERR_INVALID_PARAMETER, 0, 0);
87 CHECKNETWORK("10.0.0/240", VERR_INVALID_PARAMETER, 0, 0);
88 CHECKNETWORK("10.0.0/24.", VERR_INVALID_PARAMETER, 0, 0);
89 /* RFC 4632 s3.1: legacy "Class B" is n.n.0.0/16 */
90 CHECKNETWORK("10.1.2/16", VERR_INVALID_PARAMETER, 0, 0);
91 CHECKNETWORK("10.1/16", VINF_SUCCESS, 0x0A010000, 0xFFFF0000);
92 CHECKNETWORK("10.1.0.0/16", VINF_SUCCESS, 0x0A010000, 0xFFFF0000);
93 CHECKNETWORK("10.1.0.0.0/16", VERR_INVALID_PARAMETER, 0, 0);
94 CHECKNETWORK("1.2.3.4", VINF_SUCCESS, 0x01020304, 0xFFFFFFFF);
95 CHECKNETWORK("1.2.3.255", VINF_SUCCESS, 0x010203FF, 0xFFFFFFFF);
96 CHECKNETWORK("1.2.3.256", VERR_INVALID_PARAMETER, 0, 0);
97 CHECKNETWORK("10.1.255/24", VINF_SUCCESS, 0x0A01FF00, 0xFFFFFF00);
98 CHECKNETWORK("10.1.254/24", VINF_SUCCESS, 0x0A01FE00, 0xFFFFFF00);
99 CHECKNETWORK("10.255.1/24", VINF_SUCCESS, 0x0AFF0100, 0xFFFFFF00);
100 CHECKNETWORK("10.255.1.1/24", VERR_INVALID_PARAMETER, 0, 0);
101 CHECKNETWORK("1.2", VERR_INVALID_PARAMETER, 0, 0);
102 CHECKNETWORK("1.2.3.4.5", VERR_INVALID_PARAMETER, 0, 0);
103
104 return RTTestSummaryAndDestroy(hTest);
105}
106
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