Skip to content

phonypianist/snmpmock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a mock server for SNMP trap (using JUnit). The code is released under the MIT license.

Installation

Add the following to your project's pom.xml:

<dependency>
    <groupId>com.github.phonypianist</groupId>
    <artifactId>snmpmock</artifactId>
    <version>0.2</version>
    <scope>test</scope>
</dependency>

Usage

Define SnmpTrapMockRule:

@Rule
public SnmpTrapMockRule snmpTrapMockRule = new SnmpTrapMockRule();

And use rule as follows:

// Sending traps for localhost...

// Wait until receiving traps (count, timeout)
snmpTrapMockRule.waitFor(1, 1000);

// Retrieve traps
assertThat(snmpTrapMockRule.getTrapCount(), is(1));
assertThat(
        snmpTrapMockRule.getVariableBinding(0,
                SnmpConstants.snmpTrapOID.toString()).getVariable().toString(),
        is("1.3.6.1.6.3.1.1.5.4"));

About

Mock server for SNMP trap

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages