Sha256: a82ebce6ff4ebbb06f2bc4c1cf32abd26bc27326afb4fc663651ef81572a9f02
Contents?: true
Size: 1.88 KB
Versions: 4
Compression:
Stored size: 1.88 KB
Contents
shared_examples_for 'refreshable' do let( :refreshable ) { described_class } let( :url ) { @url + 'refreshable' } describe '#refresh' do context 'when called without a block' do it 'should refresh the inputs of the form in blocking mode' do res = Arachni::HTTP.get( url, async: false ).response f = refreshable.from_response( res ).select do |f| !!f.auditable['nonce'] end.first nonce = f.auditable['nonce'].dup updates = { 'new' => 'stuff', 'param_name' => 'other stuff' } f.update updates refreshed = f.refresh refreshed.auditable['nonce'].should_not == nonce refreshed.original['nonce'].should == nonce updates['nonce'] = f.refresh.auditable['nonce'] f.auditable.should == updates end end context 'when called with a block' do it 'should refresh the inputs of the form in async mode' do res = Arachni::HTTP.get( url, async: false ).response f = refreshable.from_response( res ).select do |f| !!f.auditable['nonce'] end.first nonce = f.auditable['nonce'].dup updates = { 'new' => 'stuff', 'param_name' => 'other stuff' } f.update updates ran = false f.refresh do |form| form.auditable['nonce'].should_not == nonce form.original['nonce'].should == nonce updates['nonce'] = form.refresh.auditable['nonce'] form.auditable.should == updates ran = true end Arachni::HTTP.run ran.should be_true end end end end
Version data entries
4 entries across 4 versions & 1 rubygems