Sha256: f15e9b366d174e1195572954001afec8572197d753991e6362582891753f935d

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

require 'spec_helper'

describe name_from_filename do
    include_examples 'plugin'

    before( :all ) do
        options.plugins[name] = {
            'username_list'  => fixtures_path + 'usernames.txt',
            'password_list'  => fixtures_path + 'passwords.txt',
        }
    end

    def results
        results_for( name_from_filename )
    end

    context 'when given the right params' do
        it 'logins successfully' do
            options.url = web_server_url_for( name_from_filename )
            run
            results.should == { username: 'admin', password: 'pass' }
        end
    end

    context 'when being unable to login' do
        it 'logs nothing' do
            options.url = web_server_url_for( "#{name_from_filename}_secure" )
            run
            results.should be_nil
        end
    end

    context "when the page isn't protected" do
        it 'logs nothing' do
            options.url = web_server_url_for( "#{name_from_filename}_unprotected" )
            run
            results.should be_nil
        end
    end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
arachni-0.4.7 spec/plugins/http_dicattack_spec.rb
arachni-0.4.6 spec/plugins/http_dicattack_spec.rb
arachni-0.4.5.2 spec/plugins/http_dicattack_spec.rb
arachni-0.4.5.1 spec/plugins/http_dicattack_spec.rb
arachni-0.4.5 spec/plugins/http_dicattack_spec.rb
arachni-0.4.4 spec/plugins/http_dicattack_spec.rb