]> git.proxmox.com Git - ovs.git/blame - tests/test-flows.c
ovsdb-doc: generate vswitch.[pic|gv] files only if dot tool is available
[ovs.git] / tests / test-flows.c
CommitLineData
a14bc59f 1/*
eec25dc1 2 * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc.
a14bc59f
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
064af421
BP
17#include <config.h>
18#include "flow.h"
19#include <errno.h>
20#include <stdlib.h>
21#include <string.h>
844dff32 22#include "classifier.h"
064af421
BP
23#include "openflow/openflow.h"
24#include "timeval.h"
25#include "ofpbuf.h"
26#include "ofp-print.h"
844dff32 27#include "ofp-util.h"
2c78a3e6 28#include "pcap-file.h"
064af421
BP
29#include "util.h"
30#include "vlog.h"
31
32#undef NDEBUG
33#include <assert.h>
34
35int
67a4917b 36main(int argc OVS_UNUSED, char *argv[])
064af421 37{
eec25dc1 38 struct ofp10_match expected_match;
064af421
BP
39 FILE *flows, *pcap;
40 int retval;
41 int n = 0, errors = 0;
42
43 set_program_name(argv[0]);
064af421
BP
44
45 flows = stdin;
46 pcap = fdopen(3, "rb");
47 if (!pcap) {
48 ovs_fatal(errno, "failed to open fd 3 for reading");
49 }
50
51 retval = pcap_read_header(pcap);
52 if (retval) {
53 ovs_fatal(retval > 0 ? retval : 0, "reading pcap header failed");
54 }
55
56 while (fread(&expected_match, sizeof expected_match, 1, flows)) {
57 struct ofpbuf *packet;
eec25dc1 58 struct ofp10_match extracted_match;
81a76618 59 struct match match;
ae412e7d 60 struct flow flow;
4e022ec0 61 union flow_in_port in_port_;
064af421
BP
62 n++;
63
64 retval = pcap_read(pcap, &packet);
65 if (retval == EOF) {
66 ovs_fatal(0, "unexpected end of file reading pcap file");
67 } else if (retval) {
68 ovs_fatal(retval, "error reading pcap file");
69 }
70
4e022ec0
AW
71 in_port_.ofp_port = u16_to_ofp(1);
72 flow_extract(packet, 0, 0, NULL, &in_port_, &flow);
81a76618
BP
73 match_init_exact(&match, &flow);
74 ofputil_match_to_ofp10_match(&match, &extracted_match);
064af421
BP
75
76 if (memcmp(&expected_match, &extracted_match, sizeof expected_match)) {
eec25dc1
BP
77 char *exp_s = ofp10_match_to_string(&expected_match, 2);
78 char *got_s = ofp10_match_to_string(&extracted_match, 2);
064af421
BP
79 errors++;
80 printf("mismatch on packet #%d (1-based).\n", n);
81 printf("Packet:\n");
c499c75d 82 ofp_print_packet(stdout, packet->data, packet->size);
50f06e16 83 ovs_hex_dump(stdout, packet->data, packet->size, 0, true);
81a76618 84 match_print(&match);
064af421
BP
85 printf("Expected flow:\n%s\n", exp_s);
86 printf("Actually extracted flow:\n%s\n", got_s);
7257b535
BP
87 ovs_hex_dump(stdout, &expected_match, sizeof expected_match, 0, false);
88 ovs_hex_dump(stdout, &extracted_match, sizeof extracted_match, 0, false);
064af421
BP
89 printf("\n");
90 free(exp_s);
91 free(got_s);
92 }
93
94 ofpbuf_delete(packet);
95 }
96 printf("checked %d packets, %d errors\n", n, errors);
97 return errors != 0;
98}
99