ioam: one api test plugin instead of five 83/14483/4
authorDamjan Marion <damarion@cisco.com>
Sat, 25 Aug 2018 19:45:25 +0000 (21:45 +0200)
committerDamjan Marion <damarion@cisco.com>
Sat, 25 Aug 2018 20:09:58 +0000 (22:09 +0200)
Change-Id: I715dade7c81f2ba6a0a5297123f588563833c3fb
Signed-off-by: Damjan Marion <damarion@cisco.com>
src/plugins/ioam.am
src/plugins/ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c
src/plugins/ioam/export/ioam_export_test.c
src/plugins/ioam/ioam_test.c [new file with mode: 0644]
src/plugins/ioam/lib-pot/pot_test.c
src/plugins/ioam/lib-trace/trace_test.c
src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_test.c
src/plugins/ioam/udp-ping/udp_ping_test.c

index dd59736..848e6cc 100644 (file)
@@ -32,12 +32,6 @@ IOAM_POT_NOINST_HDR =                                \
 
 IOAM_POT_API = ioam/lib-pot/pot.api
 
-ioam_pot_test_plugin_la_SOURCES =              \
-       ioam/lib-pot/pot_test.c                 \
-       ioam/lib-pot/pot_plugin.api.h
-
-vppapitestplugins_LTLIBRARIES += ioam_pot_test_plugin.la
-
 ########################################
 # iOAM trace export for IPv6
 ########################################
@@ -55,12 +49,6 @@ IOAM_EXPORT_NOINST_HDR =                \
 
 IOAM_EXPORT_API = ioam/export/ioam_export.api
 
-ioam_export_test_plugin_la_SOURCES =  \
-  ioam/export/ioam_export_test.c      \
-  ioam/export/ioam_export_plugin.api.h
-
-vppapitestplugins_LTLIBRARIES += ioam_export_test_plugin.la
-
 ########################################
 # iOAM Trace
 ########################################
@@ -119,18 +107,6 @@ IOAM_VXLAN_GPE_NOINST_HDR =                                \
 IOAM_VXLAN_GPE_API  = ioam/lib-vxlan-gpe/ioam_vxlan_gpe.api
 IOAM_VXLAN_GPE_API += ioam/export-vxlan-gpe/vxlan_gpe_ioam_export.api
 
-ioam_vxlan_gpe_test_plugin_la_SOURCES =                \
-       ioam/lib-vxlan-gpe/vxlan_gpe_test.c                     \
-       ioam/lib-vxlan-gpe/vxlan_gpe_plugin.api.h
-
-vppapitestplugins_LTLIBRARIES += ioam_vxlan_gpe_test_plugin.la
-
-vxlan_gpe_ioam_export_test_plugin_la_SOURCES =          \
-  ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c      \
-  ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_plugin.api.h
-
-vppapitestplugins_LTLIBRARIES += vxlan_gpe_ioam_export_test_plugin.la
-
 ########################################
 # iOAM E2E
 ########################################
@@ -201,13 +177,6 @@ UDP_PING_NOINST_HDR =                                  \
        ioam/udp-ping/udp_ping.api.h
 
 UDP_PING_API = ioam/udp-ping/udp_ping.api
-
-udp_ping_test_plugin_la_SOURCES =              \
-       ioam/udp-ping/udp_ping_test.c                   \
-       ioam/udp-ping/udp_ping_plugin.api.h  
-
-vppapitestplugins_LTLIBRARIES += udp_ping_test_plugin.la
 ########################################
 # iOAM plugins
 ########################################
@@ -242,4 +211,23 @@ nobase_apiinclude_HEADERS +=                               \
 
 vppplugins_LTLIBRARIES += ioam_plugin.la
 
+########################################
+# iOAM plugins
+########################################
+
+ioam_test_plugin_la_SOURCES = \
+  ioam/ioam_test.c                                             \
+  ioam/lib-pot/pot_test.c                                      \
+  ioam/lib-pot/pot_plugin.api.h                                        \
+  ioam/export/ioam_export_test.c                               \
+  ioam/export/ioam_export_plugin.api.h                         \
+  ioam/lib-vxlan-gpe/vxlan_gpe_test.c                          \
+  ioam/lib-vxlan-gpe/vxlan_gpe_plugin.api.h                    \
+  ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_test.c           \
+  ioam/export-vxlan-gpe/vxlan_gpe_ioam_export_plugin.api.h     \
+  ioam/udp-ping/udp_ping_test.c                                        \
+  ioam/udp-ping/udp_ping_plugin.api.h
+
+vppapitestplugins_LTLIBRARIES += ioam_test_plugin.la
+
 # vi:syntax=automake
index 7e66329..85e1ee3 100644 (file)
@@ -151,7 +151,7 @@ vxlan_gpe_ioam_vat_api_hookup (vat_main_t * vam)
 }
 
 clib_error_t *
-vat_plugin_register (vat_main_t * vam)
+vxlan_gpe_ioam_export_vat_plugin_register (vat_main_t * vam)
 {
   export_test_main_t *sm = &export_test_main;
   u8 *name;
index 70efc7e..2af4eee 100644 (file)
@@ -153,7 +153,7 @@ ioam_export_vat_api_hookup (vat_main_t * vam)
 }
 
 clib_error_t *
-vat_plugin_register (vat_main_t * vam)
+ioam_export_vat_plugin_register (vat_main_t * vam)
 {
   export_test_main_t *sm = &export_test_main;
   u8 *name;
diff --git a/src/plugins/ioam/ioam_test.c b/src/plugins/ioam/ioam_test.c
new file mode 100644 (file)
index 0000000..323c8d7
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ * Copyright (c) 2018 Cisco and/or its affiliates.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <vat/vat.h>
+#include <vlibapi/api.h>
+#include <vlibmemory/api.h>
+
+clib_error_t * vxlan_gpe_ioam_export_vat_plugin_register (vat_main_t * vam);
+clib_error_t * pot_vat_plugin_register (vat_main_t *vam);
+clib_error_t * trace_vat_plugin_register (vat_main_t * vam);
+clib_error_t * vxlan_gpe_vat_plugin_register (vat_main_t * vam);
+clib_error_t * udp_ping_vat_plugin_register (vat_main_t * vam);
+
+clib_error_t *
+vat_plugin_register (vat_main_t *vam)
+{
+  clib_error_t *err;
+
+  if ((err = pot_vat_plugin_register (vam)))
+    return err;
+
+  if ((err = vxlan_gpe_ioam_export_vat_plugin_register (vam)))
+    return err;
+
+  if ((err = trace_vat_plugin_register (vam)))
+    return err;
+
+  if ((err = vxlan_gpe_vat_plugin_register(vam)))
+    return err;
+
+  if ((err = udp_ping_vat_plugin_register (vam)))
+    return err;
+
+  return 0;
+}
index 2b528ec..e02640b 100644 (file)
@@ -314,7 +314,8 @@ pot_vat_api_hookup (vat_main_t *vam)
 #undef _
 }
 
-clib_error_t * vat_plugin_register (vat_main_t *vam)
+clib_error_t *
+pot_vat_plugin_register (vat_main_t *vam)
 {
   pot_test_main_t * sm = &pot_test_main;
   u8 * name;
index f598b7e..060c621 100644 (file)
@@ -226,7 +226,7 @@ ioam_trace_vat_api_hookup (vat_main_t * vam)
 }
 
 clib_error_t *
-vat_plugin_register (vat_main_t * vam)
+trace_vat_plugin_register (vat_main_t * vam)
 {
   trace_test_main_t *sm = &trace_test_main;
   u8 *name;
index fdb4cf6..ef24a50 100644 (file)
@@ -521,7 +521,7 @@ vxlan_gpe_vat_api_hookup (vat_main_t * vam)
 }
 
 clib_error_t *
-vat_plugin_register (vat_main_t * vam)
+vxlan_gpe_vat_plugin_register (vat_main_t * vam)
 {
   vxlan_gpe_test_main_t *sm = &vxlan_gpe_test_main;
   u8 *name;
index 1ab8eec..9a5375c 100644 (file)
@@ -242,7 +242,7 @@ udp_ping_test_api_hookup (vat_main_t * vam)
 }
 
 clib_error_t *
-vat_plugin_register (vat_main_t * vam)
+udp_ping_vat_plugin_register (vat_main_t * vam)
 {
   udp_ping_test_main_t *sm = &udp_ping_test_main;
   u8 *name;