f2ae202024
Components related to project usage costs have been updated to show different estimations for each partner, and the satellite has been updated to send the client the information it needs to do this. Previously, project costs in the satellite frontend were estimated using only the price model corresponding to the partner that the user registered with. This caused users who had a project containing differently-attributed buckets to see an incorrect price estimation. Resolves storj/storj-private#186 Change-Id: I2531643bc49f24fcb2e5f87e528b552285b6ff20
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import {
|
|
AccountBalance,
|
|
Coupon,
|
|
CreditCard,
|
|
PaymentsApi,
|
|
PaymentsHistoryItem,
|
|
ProjectUsagePriceModel,
|
|
TokenDeposit,
|
|
NativePaymentHistoryItem,
|
|
Wallet,
|
|
ProjectCharges,
|
|
} from '@/types/payments';
|
|
|
|
/**
|
|
* Mock for PaymentsApi
|
|
*/
|
|
export class PaymentsMock implements PaymentsApi {
|
|
private mockCoupon: Coupon | null = null;
|
|
|
|
public setMockCoupon(coupon: Coupon | null): void {
|
|
this.mockCoupon = coupon;
|
|
}
|
|
|
|
setupAccount(): Promise<string> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
getBalance(): Promise<AccountBalance> {
|
|
return Promise.resolve(new AccountBalance());
|
|
}
|
|
|
|
projectsUsageAndCharges(): Promise<ProjectCharges> {
|
|
return Promise.resolve(new ProjectCharges());
|
|
}
|
|
|
|
projectUsagePriceModel(): Promise<ProjectUsagePriceModel> {
|
|
return Promise.resolve(new ProjectUsagePriceModel('1', '1', '1'));
|
|
}
|
|
|
|
addCreditCard(_token: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
removeCreditCard(_cardId: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
listCreditCards(): Promise<CreditCard[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
makeCreditCardDefault(_cardId: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
paymentsHistory(): Promise<PaymentsHistoryItem[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
nativePaymentsHistory(): Promise<NativePaymentHistoryItem[]> {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
makeTokenDeposit(amount: number): Promise<TokenDeposit> {
|
|
return Promise.resolve(new TokenDeposit(amount, 'testAddress', 'testLink'));
|
|
}
|
|
|
|
applyCouponCode(_: string): Promise<Coupon> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
getCoupon(): Promise<Coupon | null> {
|
|
return Promise.resolve(this.mockCoupon);
|
|
}
|
|
|
|
getWallet(): Promise<Wallet> {
|
|
return Promise.resolve(new Wallet());
|
|
}
|
|
|
|
claimWallet(): Promise<Wallet> {
|
|
return Promise.resolve(new Wallet());
|
|
}
|
|
|
|
purchasePricingPackage(_: string): Promise<void> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
|
|
pricingPackageAvailable(): Promise<boolean> {
|
|
throw new Error('Method not implemented');
|
|
}
|
|
}
|