Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created May 25, 2017 20:13
Show Gist options
  • Save ppcano/7eaff8f31993b6dda90bd577024effba to your computer and use it in GitHub Desktop.
Save ppcano/7eaff8f31993b6dda90bd577024effba to your computer and use it in GitHub Desktop.
import http from "k6/http";
import {check} from "k6";
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
'use strict';
if (typeof start !== 'number') {
start = 0;
}
if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
export default function() {
let res = http.get("https://loadimpact.com");
console.log(res.body);
check(res, {
"status was 200": (res) => res.status == 200,
"correct title": (res) => res.html("title").text() === "Performance testing for DevOps | Load Impact",
"has login link": (res) => res.body.includes('Login</a>')
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment