summaryrefslogtreecommitdiffstats
path: root/infra/rpc/pom.xml
blob: c0df44f8254cc076e92acd5775c316612d60d18a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>io.fd.honeycomb.common</groupId>
        <artifactId>honeycomb-parent</artifactId>
        <version>1.18.04-SNAPSHOT</version>
        <relativePath>../../common/honeycomb-parent</relativePath>
    </parent>

    <groupId>io.fd.honeycomb</groupId>
    <artifactId>rpc-aggregator</artifactId>
    <version>1.18.04-SNAPSHOT</version>
    <name>${project.artifactId}</name>
    <packaging>pom</packaging>
    <modelVersion>4.0.0</modelVersion>

    <modules>
        <module>api</module>
        <module>impl</module>
    </modules>
    <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-install-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
pan> serverInterfaceName = "srv" clientInterfaceName = "cln" ) var vethTests = []func(s *VethsSuite){} var vethSoloTests = []func(s *VethsSuite){} type VethsSuite struct { HstSuite } func registerVethTests(tests ...func(s *VethsSuite)) { vethTests = append(vethTests, tests...) } func registerSoloVethTests(tests ...func(s *VethsSuite)) { vethSoloTests = append(vethSoloTests, tests...) } func (s *VethsSuite) SetupSuite() { time.Sleep(1 * time.Second) s.HstSuite.SetupSuite() s.configureNetworkTopology("2peerVeth") s.loadContainerTopology("2peerVeth") } func (s *VethsSuite) SetupTest() { s.HstSuite.SetupTest() // Setup test conditions var sessionConfig Stanza sessionConfig. newStanza("session"). append("enable"). append("use-app-socket-api").close() // ... For server serverContainer := s.getContainerByName("server-vpp") cpus := s.AllocateCpus() serverVpp, err := serverContainer.newVppInstance(cpus, sessionConfig) s.assertNotNil(serverVpp, fmt.Sprint(err)) s.setupServerVpp() // ... For client clientContainer := s.getContainerByName("client-vpp") cpus = s.AllocateCpus() clientVpp, err := clientContainer.newVppInstance(cpus, sessionConfig) s.assertNotNil(clientVpp, fmt.Sprint(err)) s.setupClientVpp() } func (s *VethsSuite) setupServerVpp() { serverVpp := s.getContainerByName("server-vpp").vppInstance s.assertNil(serverVpp.start()) serverVeth := s.getInterfaceByName(serverInterfaceName) idx, err := serverVpp.createAfPacket(serverVeth) s.assertNil(err, fmt.Sprint(err)) s.assertNotEqual(0, idx) } func (s *VethsSuite) setupClientVpp() { clientVpp := s.getContainerByName("client-vpp").vppInstance s.assertNil(clientVpp.start()) clientVeth := s.getInterfaceByName(clientInterfaceName) idx, err := clientVpp.createAfPacket(clientVeth) s.assertNil(err, fmt.Sprint(err)) s.assertNotEqual(0, idx) } var _ = Describe("VethsSuite", Ordered, ContinueOnFailure, func() { var s VethsSuite BeforeAll(func() { s.SetupSuite() }) BeforeEach(func() { s.SetupTest() }) AfterAll(func() { s.TearDownSuite() }) AfterEach(func() { s.TearDownTest() }) // https://onsi.github.io/ginkgo/#dynamically-generating-specs for _, test := range vethTests { test := test pc := reflect.ValueOf(test).Pointer() funcValue := runtime.FuncForPC(pc) testName := strings.Split(funcValue.Name(), ".")[2] It(testName, func(ctx SpecContext) { s.log(testName + ": BEGIN") test(&s) }, SpecTimeout(time.Minute*5)) } }) var _ = Describe("VethsSuiteSolo", Ordered, ContinueOnFailure, Serial, func() { var s VethsSuite BeforeAll(func() { s.SetupSuite() }) BeforeEach(func() { s.SetupTest() }) AfterAll(func() { s.TearDownSuite() }) AfterEach(func() { s.TearDownTest() }) // https://onsi.github.io/ginkgo/#dynamically-generating-specs for _, test := range vethSoloTests { test := test pc := reflect.ValueOf(test).Pointer() funcValue := runtime.FuncForPC(pc) testName := strings.Split(funcValue.Name(), ".")[2] It(testName, Label("SOLO"), func(ctx SpecContext) { s.log(testName + ": BEGIN") test(&s) }, SpecTimeout(time.Minute*5)) } })