Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-10 | Use standard URL username/password holders.10-support-http-basic-auth | Steve Kemp | |
Rather than: with auth 'username:password' We use: http://user:pass@example.com/ | |||
2017-03-28 | Added testcases for HTTP basic-auth. | Steve Kemp | |
2017-03-27 | First stab at allowing custom SSL expiry days | James Hannah | |
2016-04-22 | Updated to fix the last remaining rubocop warnings. | Steve Kemp | |
This involved silencing a few issues that were judged to be minor, and changing various whitespaces and function-calls. The most obvious example was changing this: assert(ret.kind_of? Array) To this: assert(ret.kind_of?(Array)) | |||
2016-02-10 | Don't allow limiting protocl on HTTP/HTTPS tests. | root | |
We cannot allow HTTP/HTTPS to be limited by protocol, such as IPv4-only or IPv6-only. Raise an error in the parser if this is attempted. Added test-case to confirm, and this closes #12488. | |||
2016-02-10 | Adjusted greediness of regex in http with content | Patrick J Cherry | |
It should match the next occurrence of the opening quote type, not the last. | |||
2016-02-10 | Adjusted http with content string parsing. | Patrick J Cherry | |
It now matches "can't match" and 'he said "ha!"'. Added tests. | |||
2015-08-07 | Ensure that we correctly parse bogus macro-definitions. | Steve Kemp | |
We've always had an implicit rule in macro-definitions, that they end with a period. This meant that the first line is valid: FOO is bar.vm.bytemark.co.uk. However we'd expect this to fail: FOO is bar.vm.bytemark.co.uk A similar issue would arise if a macro-definition involved more than one host, only the first would be valid. We've fixed this now, such that the trailing period is optional. | |||
2015-03-09 | Removed trailing whitespace from the code | Steve Kemp | |
2015-03-09 | More minor space fixups | Steve Kemp | |
2015-03-09 | Whitespace fixups. | Steve Kemp | |
These were all identified and suggested by rubocop. | |||
2015-03-09 | Removed spaces inside parenthesis. | Steve Kemp | |
2015-03-09 | Prefer single-quotes when you don't need interpolation. | Steve Kemp | |
So "foo" is less good than 'foo'. | |||
2015-03-09 | Do not terminate expressions with ";". | Steve Kemp | |
Ruby is not Perl, much as I sometimes wish it were. | |||
2015-03-09 | Don't use parenthesis aroudn conditions in an if. | Steve Kemp | |
2015-03-09 | Do not use parentheses for method calls with no arguments. | Steve Kemp | |
This is neater. Flagged by rubocop | |||
2015-03-09 | Avoid "Array.new" and "Hash.new" | Steve Kemp | |
Instead use {} + (). | |||
2015-02-18 | Minor test-case update. | Steve Kemp | |
Now we have multiple HTTP-implementations we need to update to make sure they're all caught. | |||
2015-01-13 | Test that returning the test-definition works. | Steve Kemp | |
This will be needed when we want to save to the redis-log. | |||
2015-01-13 | Don't marry our code to ruby1.8 | Steve Kemp | |
2013-10-15 | We now allow "with cache busting", and "without cache busting". | Steve Kemp | |
2013-06-24 | Avoid using a bogus timeperiod. | Steve Kemp | |
Our utility class for parsing time-spans uses 00-23, rather than 00-24. Update the use of the time-period to avoid the bogus "24 hour". | |||
2013-04-23 | Updated the parser to allow the test to specify whether HTTP-redirects | Steve Kemp | |
are followed. Added test-cases to match. | |||
2013-02-19 | Period definitions for tests. | Steve Kemp | |
For example: example.vm must run ping between 09-17 otherwise 'daytime ping failed'. | |||
2013-02-13 | Updated test-suite now a username/password is required for LDAP | Steve Kemp | |
2013-01-14 | Test we get an error on non-strings. | Steve Kemp | |
2012-12-31 | Added trivial redis tests. | Steve Kemp | |
2012-11-25 | Parse the "otherwise 'xxxx'." part of the tests. | Steve Kemp | |
2012-11-23 | Test that macro-expansion works correctly | Steve Kemp | |
2012-11-23 | Updated test-cases to cover different parsing routes. | Steve Kemp | |
2012-11-23 | Removed the old test cases and added new ones.:wq | Steve Kemp | |