bitbucket.org/Aishee/synsec@v0.0.0-20210414005726-236fc01a153d/pkg/parser/tests/geoip-enrich/test.yaml (about)

     1  #these are the events we input into parser
     2  lines:
     3    - Meta:
     4        test: test1
     5        source_ip: 8.8.8.8
     6    - Meta:
     7        test: test2
     8        source_ip: 192.168.0.1
     9  #these are the results we expect from the parser
    10  results:
    11    - Process: true
    12      Enriched:
    13        IsoCode: US
    14        IsInEU: false
    15        ASNOrg: Google LLC
    16      Meta:
    17        source_ip: 8.8.8.8
    18    - Process: true
    19      Enriched:
    20        IsInEU: false
    21        IsoCode:
    22        ASNOrg:
    23      Meta:
    24        source_ip: 192.168.0.1
    25                 
    26  
    27