【发布时间】:2020-03-31 09:57:07
【问题描述】:
我正在尝试使用 Jest 进行测试。因为我使用的是 TypeScript,所以编译器让我担心我的存根返回所有对象字段。我不需要所有对象字段,只需要其中两个。更糟糕的是,它要我返回的这个对象相当复杂。
我有什么
import * as sinon from "sinon";
import * as stripeHelpers from "../../src/lib/stripe";
describe("lib/authorization", () => {
let sandbox: sinon.SinonSandbox;
beforeAll(() => {
sandbox = sinon.createSandbox();
});
afterEach(() => {
sandbox.restore();
});
describe("getAuthorizationDateRange", () => {
test("returns an authorization date range", async () => {
const getUserSubscriptionStub = sandbox.stub(stripeHelpers, "getUserSubscription").resolves({
current_period_end: 123123,
current_period_start: 123123,
object: "subscription",
application_fee_percent: undefined,
billing: "charge_automatically",
collection_method: "charge_automatically",
billing_cycle_anchor: 0,
billing_thresholds: undefined,
cancel_at: undefined,
cancel_at_period_end: true,
canceled_at: undefined,
created: 0,
customer: "test",
days_until_due: undefined,
default_payment_method: "test",
default_source: "test",
default_tax_rates: [],
discount: undefined,
ended_at: undefined,
items,
latest_invoice: "test",
livemode: true,
metadata: {},
start: 0,
start_date: 0,
status: "active",
tax_percent: undefined,
trial_end: undefined,
trial_start: undefined,
});
});
});
});
我想做什么
import * as sinon from "sinon";
import * as stripeHelpers from "../../src/lib/stripe";
describe("lib/authorization", () => {
let sandbox: sinon.SinonSandbox;
beforeAll(() => {
sandbox = sinon.createSandbox();
});
afterEach(() => {
sandbox.restore();
});
describe("getAuthorizationDateRange", () => {
test("returns an authorization date range", async () => {
const getUserSubscriptionStub = sandbox.stub(stripeHelpers, "getUserSubscription").resolves({
current_period_end: 123123,
current_period_start: 123123,
});
});
});
});
正在测试的函数
export async function getAuthorizationDateRange(user: User): Promise<DateRange> {
const subscription: Stripe.subscriptions.ISubscription = await stripeHelpers.getUserSubscription(user);
return {
start: moment.unix(subscription.current_period_start).toDate(),
end: moment.unix(subscription.current_period_end).toDate()
};
}
该函数仅使用前两个属性,因此尝试重新创建 整个 对象感觉像是在浪费精力。 Stripe.subscriptions.ISubscription 接口有很多嵌套和复杂性,我真的想在测试中避免。
【问题讨论】:
标签: typescript testing jestjs sinon