Sha256: 4e7ec579b0b9f5bacce76a5eac31a6d9cd57ff8b4cb008c54461ff3c482cf7af
Contents?: true
Size: 642 Bytes
Versions: 2
Compression:
Stored size: 642 Bytes
Contents
require 'minitest/autorun' require 'webrick' require './lib/yawast' require './test/base' class TestScannerApacheServerInfo < Minitest::Test include TestBase def test_server_info_present port = rand(60000) + 1024 # pick a random port number server = start_web_server 'test/data/apache_server_info.txt', 'server-info', port override_stdout uri = Yawast::Commands::Utils.extract_uri(["http://localhost:#{port}"]) Yawast::Scanner::Apache.check_server_info uri assert stdout_value.include?('Apache Server Info page found'), 'Apache Server Info page warning not found' server.exit restore_stdout end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yawast-0.2.0.beta2 | test/test_scan_apache_server_info.rb |
yawast-0.2.0.beta1 | test/test_scan_apache_server_info.rb |