mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 15:49:01 +02:00
New plans page: Show initial price value upon first render for group price data (#7974)
* New plans page: Show initial price value upon first render * fix wrong test on SubscriptionController and add new tests on SubscriptionHelper GitOrigin-RevId: a339a97cff2df0728ba35885af8953c8a0e0b7c8
This commit is contained in:
@@ -31,7 +31,84 @@ const plans = {
|
||||
|
||||
describe('SubscriptionHelper', function () {
|
||||
beforeEach(function () {
|
||||
this.SubscriptionHelper = SandboxedModule.require(modulePath)
|
||||
this.INITIAL_LICENSE_SIZE = 2
|
||||
this.mockCollaboratorPrice = 2000
|
||||
this.mockProfessionalPrice = 4000
|
||||
this.settings = {
|
||||
groupPlanModalOptions: {
|
||||
currencySymbols: {
|
||||
USD: '$',
|
||||
CHF: 'Fr',
|
||||
DKK: 'kr',
|
||||
NOK: 'kr',
|
||||
SEK: 'kr',
|
||||
},
|
||||
},
|
||||
}
|
||||
this.GroupPlansData = {
|
||||
enterprise: {
|
||||
collaborator: {
|
||||
USD: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockCollaboratorPrice,
|
||||
},
|
||||
},
|
||||
CHF: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockCollaboratorPrice,
|
||||
},
|
||||
},
|
||||
DKK: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockCollaboratorPrice,
|
||||
},
|
||||
},
|
||||
NOK: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockCollaboratorPrice,
|
||||
},
|
||||
},
|
||||
SEK: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockCollaboratorPrice,
|
||||
},
|
||||
},
|
||||
},
|
||||
professional: {
|
||||
USD: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockProfessionalPrice,
|
||||
},
|
||||
},
|
||||
CHF: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockProfessionalPrice,
|
||||
},
|
||||
},
|
||||
DKK: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockProfessionalPrice,
|
||||
},
|
||||
},
|
||||
NOK: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockProfessionalPrice,
|
||||
},
|
||||
},
|
||||
SEK: {
|
||||
[this.INITIAL_LICENSE_SIZE]: {
|
||||
price_in_cents: this.mockProfessionalPrice,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
this.SubscriptionHelper = SandboxedModule.require(modulePath, {
|
||||
requires: {
|
||||
'@overleaf/settings': this.settings,
|
||||
'./GroupPlansData': this.GroupPlansData,
|
||||
},
|
||||
})
|
||||
})
|
||||
|
||||
describe('shouldPlanChangeAtTermEnd', function () {
|
||||
@@ -71,4 +148,378 @@ describe('SubscriptionHelper', function () {
|
||||
expect(changeAtTermEnd).to.be.true
|
||||
})
|
||||
})
|
||||
|
||||
describe('generateInitialLocalizedGroupPrice', function () {
|
||||
describe('collaborator plan', function () {
|
||||
beforeEach(function () {
|
||||
this.plan = 'collaborator'
|
||||
})
|
||||
|
||||
describe('for CHF currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'CHF'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.recommendedCurrencySymbol} ${this.expectedPrice}`
|
||||
const {
|
||||
price: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${this.recommendedCurrencySymbol} ${expectedPricePerUser}`
|
||||
const {
|
||||
pricePerUser: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for DKK currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'DKK'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.expectedPrice} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
price: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${expectedPricePerUser} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
pricePerUser: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for SEK currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'SEK'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.expectedPrice} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
price: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${expectedPricePerUser} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
pricePerUser: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for NOK currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'NOK'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.expectedPrice} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
price: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${expectedPricePerUser} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
pricePerUser: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for other supported currencies', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'USD'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.recommendedCurrencySymbol}${this.expectedPrice}`
|
||||
const {
|
||||
price: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${this.recommendedCurrencySymbol}${expectedPricePerUser}`
|
||||
const {
|
||||
pricePerUser: { collaborator },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(collaborator).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
describe('professional plan plan', function () {
|
||||
beforeEach(function () {
|
||||
this.plan = 'professional'
|
||||
})
|
||||
|
||||
describe('for CHF currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'CHF'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.recommendedCurrencySymbol} ${this.expectedPrice}`
|
||||
const {
|
||||
price: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${this.recommendedCurrencySymbol} ${expectedPricePerUser}`
|
||||
const {
|
||||
pricePerUser: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for DKK currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'DKK'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.expectedPrice} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
price: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${expectedPricePerUser} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
pricePerUser: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for SEK currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'SEK'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.expectedPrice} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
price: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${expectedPricePerUser} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
pricePerUser: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for NOK currency', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'NOK'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.expectedPrice} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
price: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${expectedPricePerUser} ${this.recommendedCurrencySymbol}`
|
||||
const {
|
||||
pricePerUser: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
|
||||
describe('for other supported currencies', function () {
|
||||
beforeEach(function () {
|
||||
this.mockRecommendedCurrency = 'USD'
|
||||
this.recommendedCurrencySymbol =
|
||||
this.settings.groupPlanModalOptions.currencySymbols[
|
||||
this.mockRecommendedCurrency
|
||||
]
|
||||
this.expectedPrice =
|
||||
this.GroupPlansData.enterprise[this.plan][
|
||||
this.mockRecommendedCurrency
|
||||
][this.INITIAL_LICENSE_SIZE].price_in_cents / 100
|
||||
})
|
||||
|
||||
it('should return the correct localized price', function () {
|
||||
const expectedLocalizedPrice = `${this.recommendedCurrencySymbol}${this.expectedPrice}`
|
||||
const {
|
||||
price: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPrice)
|
||||
})
|
||||
|
||||
it('should return the correct localized price per user', function () {
|
||||
const expectedPricePerUser =
|
||||
this.expectedPrice / this.INITIAL_LICENSE_SIZE
|
||||
const expectedLocalizedPricePerUser = `${this.recommendedCurrencySymbol}${expectedPricePerUser}`
|
||||
const {
|
||||
pricePerUser: { professional },
|
||||
} = this.SubscriptionHelper.generateInitialLocalizedGroupPrice(
|
||||
this.mockRecommendedCurrency
|
||||
)
|
||||
expect(professional).to.be.equal(expectedLocalizedPricePerUser)
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user