2020-08-01 03:43:15 +02:00
|
|
|
"use strict";
|
|
|
|
|
2020-11-30 23:46:45 +01:00
|
|
|
const {strict: assert} = require("assert");
|
2019-01-08 18:06:06 +01:00
|
|
|
const fs = require("fs");
|
|
|
|
|
2020-07-24 06:02:07 +02:00
|
|
|
const {JSDOM} = require("jsdom");
|
|
|
|
|
2021-03-06 19:05:17 +01:00
|
|
|
const {mock_module, set_global, with_field, zrequire} = require("../zjsunit/namespace");
|
2020-12-01 00:39:47 +01:00
|
|
|
const {run_test} = require("../zjsunit/test");
|
2021-02-21 15:38:51 +01:00
|
|
|
const $ = require("../zjsunit/zjquery");
|
2020-12-01 00:02:16 +01:00
|
|
|
|
2019-01-08 18:06:06 +01:00
|
|
|
const template = fs.readFileSync("templates/corporate/billing.html", "utf-8");
|
2020-07-16 22:40:18 +02:00
|
|
|
const dom = new JSDOM(template, {pretendToBeVisual: true});
|
2019-01-08 18:06:06 +01:00
|
|
|
const document = dom.window.document;
|
|
|
|
|
2021-02-10 04:53:22 +01:00
|
|
|
const StripeCheckout = set_global("StripeCheckout", {
|
2021-02-23 14:10:56 +01:00
|
|
|
configure: () => {},
|
2019-01-08 18:06:06 +01:00
|
|
|
});
|
2021-03-07 13:57:14 +01:00
|
|
|
|
|
|
|
const helpers = mock_module("billing/helpers", {
|
|
|
|
set_tab: () => {},
|
|
|
|
});
|
2019-01-08 18:06:06 +01:00
|
|
|
|
2021-02-23 14:10:56 +01:00
|
|
|
run_test("initialize", (override) => {
|
2019-11-02 00:06:25 +01:00
|
|
|
let token_func;
|
2020-04-24 17:38:13 +02:00
|
|
|
|
|
|
|
let set_tab_called = false;
|
2021-02-23 14:10:56 +01:00
|
|
|
override(helpers, "set_tab", (page_name) => {
|
2019-01-08 18:06:06 +01:00
|
|
|
assert.equal(page_name, "billing");
|
2020-04-24 17:38:13 +02:00
|
|
|
set_tab_called = true;
|
2021-02-23 14:10:56 +01:00
|
|
|
});
|
2019-01-08 18:06:06 +01:00
|
|
|
|
2020-04-24 17:38:13 +02:00
|
|
|
let create_ajax_request_called = false;
|
2021-02-23 14:10:56 +01:00
|
|
|
function card_change_ajax(url, form_name, stripe_token) {
|
2019-01-08 18:06:06 +01:00
|
|
|
assert.equal(url, "/json/billing/sources/change");
|
|
|
|
assert.equal(form_name, "cardchange");
|
|
|
|
assert.equal(stripe_token, "stripe_token");
|
2020-04-24 17:38:13 +02:00
|
|
|
create_ajax_request_called = true;
|
2021-02-23 14:10:56 +01:00
|
|
|
}
|
2019-01-08 18:06:06 +01:00
|
|
|
|
2020-04-24 17:38:13 +02:00
|
|
|
let open_func_called = false;
|
2019-01-08 18:06:06 +01:00
|
|
|
const open_func = (config_opts) => {
|
|
|
|
assert.equal(config_opts.name, "Zulip");
|
|
|
|
assert.equal(config_opts.zipCode, true);
|
|
|
|
assert.equal(config_opts.billingAddress, true);
|
|
|
|
assert.equal(config_opts.panelLabel, "Update card");
|
|
|
|
assert.equal(config_opts.label, "Update card");
|
|
|
|
assert.equal(config_opts.allowRememberMe, false);
|
|
|
|
assert.equal(config_opts.email, "{{stripe_email}}");
|
|
|
|
|
|
|
|
token_func("stripe_token");
|
2020-04-24 17:38:13 +02:00
|
|
|
open_func_called = true;
|
2019-01-08 18:06:06 +01:00
|
|
|
};
|
|
|
|
|
2020-04-24 17:38:13 +02:00
|
|
|
let stripe_checkout_configure_called = false;
|
2021-02-23 14:10:56 +01:00
|
|
|
override(StripeCheckout, "configure", (config_opts) => {
|
2020-07-15 01:29:15 +02:00
|
|
|
assert.equal(config_opts.image, "/static/images/logo/zulip-icon-128x128.png");
|
|
|
|
assert.equal(config_opts.locale, "auto");
|
|
|
|
assert.equal(config_opts.key, "{{publishable_key}}");
|
2019-01-08 18:06:06 +01:00
|
|
|
token_func = config_opts.token;
|
2020-04-24 17:38:13 +02:00
|
|
|
stripe_checkout_configure_called = true;
|
2019-01-08 18:06:06 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
open: open_func,
|
|
|
|
};
|
2021-02-23 14:10:56 +01:00
|
|
|
});
|
2019-01-08 18:06:06 +01:00
|
|
|
|
2020-07-15 00:34:28 +02:00
|
|
|
$("#payment-method").data = (key) =>
|
|
|
|
document.querySelector("#payment-method").getAttribute("data-" + key);
|
2019-01-08 18:06:06 +01:00
|
|
|
|
zjsunit: Remove rewiremock dependency.
We now just use a module._load hook to inject
stubs into our code.
For conversion purposes I temporarily maintain
the API of rewiremock, apart from the enable/disable
pieces, but I will make a better wrapper in an
upcoming commit.
We can detect when rewiremock is called after
zrequire now, and I fix all the violations in
this commit, mostly by using override.
We can also detect when a mock is needlessly
created, and I fix all the violations in this
commit.
The one minor nuisance that this commit introduces
is that you can only stub out modules in the Zulip
source tree, which is now static/js. This should
not really be a problem--there are usually better
techniques to deal with third party depenencies.
In the prior commit I show a typical workaround,
which is to create a one-line wrapper in your
test code. It's often the case that you can simply
use override(), as well.
In passing I kill off `reset_modules`, and I
eliminated the second argument to zrequire,
which dates back to pre-es6 days.
2021-03-06 12:47:54 +01:00
|
|
|
zrequire("billing/billing");
|
2019-01-08 18:06:06 +01:00
|
|
|
|
2020-04-24 17:38:13 +02:00
|
|
|
assert(set_tab_called);
|
|
|
|
assert(stripe_checkout_configure_called);
|
2019-01-08 18:06:06 +01:00
|
|
|
const e = {
|
2021-02-23 14:10:56 +01:00
|
|
|
preventDefault: () => {},
|
2019-01-08 18:06:06 +01:00
|
|
|
};
|
2020-07-15 01:29:15 +02:00
|
|
|
const update_card_click_handler = $("#update-card-button").get_on_handler("click");
|
2021-02-23 14:10:56 +01:00
|
|
|
with_field(helpers, "create_ajax_request", card_change_ajax, () => {
|
|
|
|
update_card_click_handler(e);
|
|
|
|
assert(create_ajax_request_called);
|
|
|
|
assert(open_func_called);
|
|
|
|
});
|
2020-04-24 17:38:13 +02:00
|
|
|
|
|
|
|
create_ajax_request_called = false;
|
2021-02-23 14:10:56 +01:00
|
|
|
function plan_change_ajax(url, form_name, stripe_token, numeric_inputs) {
|
2020-04-24 17:38:13 +02:00
|
|
|
assert.equal(url, "/json/billing/plan/change");
|
|
|
|
assert.equal(form_name, "planchange");
|
|
|
|
assert.equal(stripe_token, undefined);
|
|
|
|
assert.deepEqual(numeric_inputs, ["status"]);
|
|
|
|
create_ajax_request_called = true;
|
2021-02-23 14:10:56 +01:00
|
|
|
}
|
2020-04-24 17:38:13 +02:00
|
|
|
|
2020-07-15 01:29:15 +02:00
|
|
|
const change_plan_status_click_handler = $("#change-plan-status").get_on_handler("click");
|
2021-02-23 14:10:56 +01:00
|
|
|
|
|
|
|
with_field(helpers, "create_ajax_request", plan_change_ajax, () => {
|
|
|
|
change_plan_status_click_handler(e);
|
|
|
|
});
|
2020-04-24 17:38:13 +02:00
|
|
|
assert(create_ajax_request_called);
|
2019-01-08 18:06:06 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
run_test("billing_template", () => {
|
|
|
|
// Elements necessary for create_ajax_request
|
|
|
|
assert(document.querySelector("#cardchange-error"));
|
|
|
|
assert(document.querySelector("#cardchange-loading"));
|
|
|
|
assert(document.querySelector("#cardchange_loading_indicator"));
|
|
|
|
assert(document.querySelector("#cardchange-success"));
|
|
|
|
|
|
|
|
assert(document.querySelector("input[name=csrfmiddlewaretoken]"));
|
|
|
|
});
|