X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-odp.c;h=dd80766f7c155249b36ca519cb8399bb32ef78da;hb=8e61c1104eddbe737a67cbf559fcb48971f59569;hp=29732eb58baf77863142f90d7bfcfab11b755d82;hpb=06d7ae7d9ba1c09c3ce5ad805a89ea564449795d;p=openvswitch diff --git a/tests/test-odp.c b/tests/test-odp.c index 29732eb5..dd80766f 100644 --- a/tests/test-odp.c +++ b/tests/test-odp.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Nicira, Inc. + * Copyright (c) 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,11 +22,13 @@ #include "flow.h" #include "odp-util.h" #include "ofpbuf.h" +#include "util.h" #include "vlog.h" -int -main(void) +static int +parse_keys(void) { + int exit_code = 0; struct ds in; ds_init(&in); @@ -70,6 +72,12 @@ main(void) ofpbuf_init(&odp_key, 0); odp_flow_key_from_flow(&odp_key, &flow); + if (odp_key.size > ODPUTIL_FLOW_KEY_BYTES) { + printf ("too long: %zu > %d\n", + odp_key.size, ODPUTIL_FLOW_KEY_BYTES); + exit_code = 1; + } + /* Convert odp_key to string. */ ds_init(&out); odp_flow_key_format(odp_key.data, odp_key.size, &out); @@ -81,5 +89,51 @@ main(void) } ds_destroy(&in); + return exit_code; +} + +static int +parse_actions(void) +{ + struct ds in; + + ds_init(&in); + vlog_set_levels_from_string("odp_util:console:dbg"); + while (!ds_get_test_line(&in, stdin)) { + struct ofpbuf odp_actions; + struct ds out; + int error; + + /* Convert string to OVS DP actions. */ + ofpbuf_init(&odp_actions, 0); + error = odp_actions_from_string(ds_cstr(&in), NULL, &odp_actions); + if (error) { + printf("odp_actions_from_string: error\n"); + goto next; + } + + /* Convert odp_actions back to string. */ + ds_init(&out); + format_odp_actions(&out, odp_actions.data, odp_actions.size); + puts(ds_cstr(&out)); + ds_destroy(&out); + + next: + ofpbuf_uninit(&odp_actions); + } + ds_destroy(&in); + return 0; } + +int +main(int argc, char *argv[]) +{ + if (argc == 2 &&!strcmp(argv[1], "parse-keys")) { + return parse_keys(); + } else if (argc == 2 && !strcmp(argv[1], "parse-actions")) { + return parse_actions(); + } else { + ovs_fatal(0, "usage: %s parse-keys | parse-actions", argv[0]); + } +}