pantheon.js 19.5 KB
Newer Older
Your Name's avatar
Your Name committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
//
// This is an advanced k6 script sample that simulates users
// logging into an e-commerce site and purchasing things there.
//

import { group, check, sleep, fail } from "k6";
import http from "k6/http";

export let options = {
	maxRedirects: 10,
}

// Base URL where the site is located
const baseURL = "https://dev-li-david.pantheonsite.io";

// User think time in between page loads etc. (change this to 0 when debugging)
const thinkTime = 30;

// List of login usernames and passwords
const credentials = [
	{ username: "testuser1", password: "testuser1" },
];

// Main function that gets executed by VUs repeatedly
export default function() {
	// Load front/home page on site
	group("front page", doFrontPage);
	sleep(thinkTime);

	// Go to user login page and log in
	group("login page", doLogin);
	sleep(thinkTime);

	// Visit a random selection of available product category pages, and 
	// randomly add products from each category to our cart
	for (name in categories) {
		if (Math.random() <= categories[name].chance) {
			group(name, function() { doCategory(categories[name]); });
			sleep(thinkTime);
		}
	}

	// Check out our cart, perform payment
	group("checkout", doCheckout);
	sleep(thinkTime);

	// Log out the user
	group("logout", doLogout);
	sleep(thinkTime);
}

// "categories" is an object containing information about the various 
// product categories and the products available in each category:
//
// categories[name].url      = the URL for the product category page.
//
// categories[name].chance   = the likelihood that the product category 
//                             gets visited by the VU on each VU iteration.
//
// categories[name].title    = the HTML <title> text to look for, to determine 
//                             that the category page was loaded correctly.
//
// categories[name].products = an object containing info about the different
//                             products available under that category. See
//                             below for a description of the product object.
//
//
// products[name].url    = the URL for the product page.
//
// products[name].chance = the likelihood that a) the product page gets 
//                         visited when its parent product category page
//                         gets visited, and b) the product gets added to
//                         the VUs shopping cart when the product page is
//                         visited.
//              
// products[name].title  = the HTML <title> text to look for, when trying
//                         to determine if the product page was loaded 
//                         correctly.
//
const categories = {
	"To Carry": {
		url: `${baseURL}/collection/carry`,
		title: "To carry | David li commerce-test",
		chance: 0.5,
		products: {
			"Laptop bag": {
				url: `${baseURL}/bags-cases/commerce-guys-laptop-bag`,
				title: "Commerce Guys Laptop Bag | David li commerce-test",
				chance: 0.25,
			},
			"Drupal Bag": {
				url: `${baseURL}/bags-cases/drupal-commerce-messenger-bag`,
				title: "Drupal Commerce Messenger Bag | David li commerce-test",
				chance: 0.25,
			},
		}
	},
	"To Drink With": {
		url: `${baseURL}/collection/drink`,
		title: "To drink with | David li commerce-test",
		chance: 0.5,
		products: {
			"Drupal Commerce to Wake You Up": {
				url: `${baseURL}/drinks/drupal-commerce-wake-you`,
				title: "Drupal Commerce to Wake You Up | David li commerce-test",
				chance: 0.25,
			},
			"The Guy Mug": {
				url: `${baseURL}/drinks/guy-mug`,
				title: "\"The Guy\" Mug  | David li commerce-test",
				chance: 0.25,
			},
		}
	}
};


// Request the front/home page, plus static resources
function doFrontPage() {
	// Load the front page.
	check(http.get(baseURL + "/"), {
		"title is correct": (res) => res.html("title").text() == "Welcome to David li commerce-test | David li commerce-test",
	});

	// Load static assets.
	group("static resources", function() { http.batch(staticAssets); });
}

// Request the login page and perform a user login
function doLogin() {
	// Request the login page.
	let res = http.get(baseURL + "/user/login");
	check(res, {
		"title is correct": (res) => res.html("title").text() == "User account | David li commerce-test",
	});

	// TODO: Add attr() to k6/html!
	// Extract hidden input fields.
	let formBuildID = res.body.match('name="form_build_id" value="(.*)"')[1];

	group("login", function() {
		// Pick a random set of credentials.
		let creds = credentials[Math.floor(Math.random()*credentials.length)];

		// Create login request.
		let formdata = {
			name: creds.username,
			pass: creds.password,
			form_build_id: formBuildID,
			form_id: "user_login",
			op: "Log in",
		};
		let headers = { "Content-Type": "application/x-www-form-urlencoded" };
		// Send login request
		let res = http.post(baseURL + "/user/login", formdata, { headers: headers });
		// Verify that we ended up on the user page
		check(res, {
			"login succeeded": (res) => res.url == `${baseURL}/users/${creds.username}`,
		}) || fail("login failed");
	});
}

// Load a product category page, then potentially load some product pages
function doCategory(category) {
	check(http.get(category.url), {
		"title is correct": (res) => res.html("title").text() == category.title,
	});

	for (prodName in category.products) {
		if (Math.random() <= category.products[prodName].chance) {
			group(prodName, function() { doProductPage(category.products[prodName]) });
		}
	}
}

// Load product page and potentially add product to cart
function doProductPage(product) {
	let res = http.get(product.url);
	check(res, {
		"title is correct": (res) => res.html("title").text() == product.title,
	});
	if (Math.random() <= product.chance) {
		let formBuildID = res.body.match('name="form_build_id" value="(.*)"')[1];
		let formID = res.body.match('name="form_id" value="(.*)"')[1];
		let formToken = res.body.match('name="form_token" value="(.*)"')[1];
		let productID = res.body.match('name="product_id" value="(.*)"')[1];
		group("add to cart", function() { 
			addProductToCart(product.url, productID, formID, formBuildID, formToken)
		});
	}
}

// Add a product to our shopping cart
function addProductToCart(url, productID, formID, formBuildID, formToken) {
	let formdata = {
		product_id: productID,
		form_id: formID,
		form_build_id: formBuildID,
		form_token: formToken,
		quantity: 1,
		op: "Add to cart",
	};
	let headers = { "Content-Type": "application/x-www-form-urlencoded" };
	let res = http.post(url, formdata, { headers: headers });
	// verify add to cart succeeded
	check(res, {
		"add to cart succeeded": (res) => res.body.includes('Item successfully added to your cart')
	}) || fail("add to cart failed");
}

// Perform multi-step (multi-page) checkout
function doCheckout() {
	var res;

	group("Checkout 1: review cart", function() {
		// Checkout step 1: Review cart
		res = http.get(baseURL + "/cart");
		check(res, {
			"title is correct": (res) => res.html("title").text() === 'Shopping cart | David li commerce-test'
		});
	});

	// Did we add any products to our cart?  If not, skip the rest of the checkout process
	if (res.body.includes("Your shopping cart is empty.")) {
		return;
	}

	group("Checkout 2: submit cart", function() {
		let formID = res.body.match('name="form_id" value="(.*)"')[1];
		let formToken = res.body.match('name="form_token" value="(.*)"')[1];
		let formBuildID = res.body.match('name="form_build_id" value="(.*)"')[1];
		let formdata = {
			"form_build_id": formBuildID,
			"form_token": formToken,
			"form_id": formID,
			"op": "Checkout"
		};
		let headers = { "Content-Type": "application/x-www-form-urlencoded" };
		res = http.post(baseURL + "/cart", formdata, { headers: headers });
		check(res, {
			"cart submit succeeded": (res) => res.url.includes("/checkout/")
		}) || fail("cart submit failed");
	});

	// The previous POST operation should get redirected to a dynamic URL that has a
	// path that looks like e.g. "/checkout/7". Later checkout steps get redirected
	// to paths that are prefixed with this dynamic string, which means we need to
	// save it in order to be able to (easily) verify that later POSTs are successful
	// and get redirected to e.g. "/checkout/7/shipping"
	let checkoutBaseURL = res.url;

	group("Checkout 3: billing details", function() {
		let formID = res.body.match('name="form_id" value="(.*)"')[1];
		let formToken = res.body.match('name="form_token" value="(.*)"')[1];
		let formBuildID = res.body.match('name="form_build_id" value="(.*)"')[1];
		// try without setting Referer
		let formdata = {
			"customer_profile_billing[commerce_customer_address][und][0][country]": "SE",
			"customer_profile_billing[commerce_customer_address][und][0][name_line]": "Mr Test",
			"customer_profile_billing[commerce_customer_address][und][0][thoroughfare]": "Gotgatan 14",
			"customer_profile_billing[commerce_customer_address][und][0][premise]": "",
			"customer_profile_billing[commerce_customer_address][und][0][postal_code]": "11846",
			"customer_profile_billing[commerce_customer_address][und][0][locality]": "Stockholm",
			"customer_profile_shipping[commerce_customer_profile_copy]": "1",
			"form_build_id": formBuildID,
			"form_token": formToken,
			"form_id": formID,
			"op": "Continue to next step"
		};
		let headers = { "Content-Type": "application/x-www-form-urlencoded" };
		res = http.post(checkoutBaseURL, formdata, { headers: headers });
		check(res, {
			"billing details succeeded": (res) => res.url === (checkoutBaseURL + "/shipping")
		}) || fail("billing details failed"); 
	});

	group("Checkout 4: shipping options", function() {
		let formID = res.body.match('name="form_id" value="(.*)"')[1];
		let formToken = res.body.match('name="form_token" value="(.*)"')[1];
		let formBuildID = res.body.match('name="form_build_id" value="(.*)"')[1];
		let formdata = {
			"commerce_shipping[shipping_service]": "express_shipping",
			"form_build_id": formBuildID,
			"form_token": formToken,
			"form_id": formID,
			"op": "Continue to next step"
		};
		let headers = { "Content-Type": "application/x-www-form-urlencoded" };
		res = http.post(checkoutBaseURL + "/shipping", formdata, { headers: headers });
		check(res, {
			"shipping options succeeded": (res) => res.url === (checkoutBaseURL + "/review")
		}) || console.log("Select shipping failed!");
	});
	
	group("Checkout 5: review and submit", function() {
		let formID = res.body.match('name="form_id" value="(.*)"')[1];
		let formToken = res.body.match('name="form_token" value="(.*)"')[1];
		let formBuildID = res.body.match('name="form_build_id" value="(.*)"')[1];
		let formdata = {
			"commerce_payment[payment_method]": "commerce_payment_example|commerce_payment_commerce_payment_example",
			"commerce_payment[payment_details][credit_card][number]": "4111111111111111",
			"commerce_payment[payment_details][credit_card][exp_month]": "03",
			"commerce_payment[payment_details][credit_card][exp_year]": "2019",
			"form_build_id": formBuildID,
			"form_token": formToken,
			"form_id": formID,
			"op": "Continue to next step"
		};
		let headers = { "Content-Type": "application/x-www-form-urlencoded" };
		res = http.post(checkoutBaseURL + "/review", formdata, { headers: headers });
		// if this POST succeeds, it will redirect to e.g. /checkout/7/payment
		// /checkout/7/payment, in turn, will redirect to /checkout/7/paypal_ec
		// /checkout/7/paypal_ec, in turn, will redirect to /checkout/7/complete
		check(res, {
			"Checkout 6: checkout complete": (res) => res.html("h1").text() === "Checkout complete"
		}) || fail("review and submit failed");
	});
}

// Log out the user
function doLogout() {
	check(http.get(baseURL + "/user/logout"), {
		"logout succeeded": (res) => res.body.includes('<a href="/user/login">Log in')
	}) || fail("logout failed");
}

// Static resources to be loaded once per VU iteration
const staticAssets = [
	baseURL + "/modules/system/system.base.css?olqap9",
	baseURL + "/modules/system/system.menus.css?olqap9",
	baseURL + "/modules/system/system.messages.css?olqap9",
	baseURL + "/modules/system/system.theme.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/cloud_zoom/css/cloud_zoom.css?olqap9",
	baseURL + "/misc/ui/jquery.ui.core.css?olqap9",
	baseURL + "/misc/ui/jquery.ui.theme.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/libraries/jquery_ui_spinner/ui.spinner.css?olqap9",
	baseURL + "/modules/comment/comment.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/commerce_add_to_cart_confirmation/css/commerce_add_to_cart_confirmation.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/commerce_kickstart/commerce_kickstart_menus/commerce_kickstart_menus.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/date/date_api/date.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/date/date_popup/themes/datepicker.1.7.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/fences/field.css?olqap9",
	baseURL + "/modules/node/node.css?olqap9",
	baseURL + "/modules/user/user.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/views/css/views.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/ctools/css/ctools.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/commerce/modules/line_item/theme/commerce_line_item.theme.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/commerce/modules/product/theme/commerce_product.theme.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/commerce_fancy_attributes/commerce_fancy_attributes.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/alpha/css/alpha-reset.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/alpha/css/alpha-mobile.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/alpha/css/alpha-alpha.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/css/formalize.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/css/omega-text.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/css/omega-branding.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/css/omega-menu.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/css/omega-forms.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/css/global.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/css/commerce_kickstart_style.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/css/omega-kickstart-alpha-default.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/css/omega-kickstart-alpha-default-narrow.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/css/commerce-kickstart-theme-alpha-default.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/css/commerce-kickstart-theme-alpha-default-narrow.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/alpha/css/grid/alpha_default/narrow/alpha-default-narrow-24.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/css/omega-kickstart-alpha-default-normal.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/css/commerce-kickstart-theme-alpha-default-normal.css?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/alpha/css/grid/alpha_default/normal/alpha-default-normal-24.css?olqap9",
	baseURL + "/misc/jquery.js?v=1.4.4",
	baseURL + "/misc/jquery.once.js?v=1.2",
	baseURL + "/misc/drupal.js?olqap9",
	baseURL + "/misc/ui/jquery.ui.core.min.js?v=1.8.7",
	baseURL + "/misc/ui/jquery.ui.widget.min.js?v=1.8.7",
	baseURL + "/profiles/commerce_kickstart/libraries/cloud-zoom/cloud-zoom.1.0.3.min.js?v=1.0.3",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/cloud_zoom/js/cloud_zoom.js?v=1.0.3",
	baseURL + "/profiles/commerce_kickstart/libraries/jquery_expander/jquery.expander.min.js?v=1.4.2",
	baseURL + "/profiles/commerce_kickstart/libraries/jquery_ui_spinner/ui.spinner.min.js?v=1.8",
	baseURL + "/profiles/commerce_kickstart/libraries/selectnav.js/selectnav.min.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/commerce_add_to_cart_confirmation/js/commerce_add_to_cart_confirmation.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/commerce_kickstart/commerce_kickstart_search/commerce_kickstart_search.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/service_links/js/twitter_button.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/service_links/js/facebook_like.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/service_links/js/google_plus_one.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/contrib/commerce_fancy_attributes/commerce_fancy_attributes.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/modules/commerce_kickstart/commerce_kickstart_product_ui/commerce_kickstart_product_ui.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/js/omega_kickstart.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/js/jquery.formalize.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega/omega/js/omega-mediaqueries.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/js/commerce_kickstart_theme_custom.js?olqap9",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/logo.png",
	baseURL + "/sites/default/files/styles/product_full/public/messenger-1v1.jpg?itok=hPe-GkYY",
	baseURL + "/sites/default/files/styles/product_thumbnail/public/messenger-1v1.jpg?itok=cXkqMlMc",
	baseURL + "/sites/default/files/styles/product_thumbnail/public/messenger-1v2.jpg?itok=yyhLIuCD",
	baseURL + "/sites/default/files/styles/product_thumbnail/public/messenger-1v3.jpg?itok=uQsNvRiQ",
	baseURL + "/sites/default/files/styles/product_thumbnail/public/messenger-1v4.jpg?itok=ns9kHz1T",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/images/bg.png",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/images/picto_cart.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/picto_magnifying_glass.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/bg_product_attributes_bottom.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/bg_product_attributes_top.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/bg_add_to_cart.png",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/images/bg_block_footer_title.png",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/images/icon_facebook.png",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/images/icon_twitter.png",
	baseURL + "/profiles/commerce_kickstart/themes/commerce_kickstart_theme/images/icon_pinterest.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/picto_mastercard.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/picto_paypal.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/picto_visa_premier.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/picto_american_express.png",
	baseURL + "/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png",
	baseURL + "/misc/ui/images/ui-icons_888888_256x240.png",
	baseURL + "/profiles/commerce_kickstart/themes/contrib/omega_kickstart/images/btn_read_more.png",
	baseURL + "/sites/default/files/messenger-1v1.jpg",
	baseURL + "/profiles/commerce_kickstart/libraries/cloud-zoom/blank.png",
];