Help language development. Donate to The Perl Foundation
use v6.d; use Test; # # Copyright © 2018-2019 Joelle Maslak # All Rights Reserved - See License # use Net::BGP; use Net::BGP::Conversions; use Net::BGP::Message::Notify::Open::Bad-Peer-AS; subtest 'OPEN', { my $bgp = Net::BGP.new( port => 0, my-asn => 65000, identifier => 1000 ); is $bgp.port, 0, 'BGP Port is 0'; $bgp.listen(); $bgp.peer-add( :peer-asn(0x1111), :peer-ip('127.0.0.1'), :passive ); isnt $bgp.port, 0, 'BGP Port isnt 0'; is $bgp.my-asn, 65000, "ASN is correct"; my $client = IO::Socket::INET.new(:host<127.0.0.1>, :port($bgp.port)); my $uc = $bgp.user-channel; my $cr = $uc.receive; is $cr.message-name, 'New-Connection', 'Message type is as expected'; $client.write( read-message('t/bgp-messages/open-message-no-opt.msg') ); # my $cr-bgp = $uc.receive; # is $cr-bgp.message-name, 'BGP-Message', 'BGP message type is as expected'; # is $cr-bgp.is-error, False, 'Is not an error'; # is $cr-bgp.message.message-name, 'OPEN', 'BGP Message is proper name'; # is $cr-bgp.message.message-code, 1, 'BGP Message is proper type'; # is $cr-bgp.message.option-len, 0, 'Option length is zero'; # is $cr-bgp.message.option-len, $cr-bgp.message.option.bytes, 'Option bytes = len'; my $cr-bad = $uc.receive; is $bgp.peer-get(:peer-ip('127.0.0.1')).defined, True, 'Peer is defined'; is $bgp.peer-get(:peer-ip('127.0.0.1')).state, Net::BGP::Peer::Idle, 'Peer is Idle'; is $cr-bad.message-name, 'Closed-Connection', 'Close message type is as expected'; is $cr-bad.is-error, False, 'Is not an error'; is $bgp.peer-get(:peer-ip('127.0.0.1')).state, Net::BGP::Peer::Idle, 'Peer is idle'; my $pkt = $client.read(16); # Read (and silently discard) header my $raw = $client.read(nuint16($client.read(2))-18); # Read appropriate length my $msg = Net::BGP::Message.from-raw($raw, :!asn32); ok $msg ~~ Net::BGP::Message::Notify::Open::Bad-Peer-AS, "Message is proper type"; $client.close(); $bgp.listen-stop(); done-testing; } done-testing; sub read-message($filename) { return slurp $filename, :bin; }