github.com/crowdsecurity/crowdsec@v1.6.1/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: 1.0.0.1
     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        IsInEU: false
    14        ASNOrg: "Google Inc."
    15      Meta:
    16        source_ip: 1.0.0.1
    17    - Process: true
    18      Enriched:
    19        IsInEU: false
    20        IsoCode:
    21        ASNOrg:
    22      Meta:
    23        source_ip: 192.168.0.1
    24                 
    25  
    26