File size: 35,322 Bytes
d6f631f | 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 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 | package addondiff_test
import (
"context"
"encoding/json"
"fmt"
"testing"
"time"
"github.com/alpacahq/alpacadecimal"
"github.com/samber/lo"
"github.com/stretchr/testify/require"
"github.com/openmeterio/openmeter/openmeter/app"
"github.com/openmeterio/openmeter/openmeter/productcatalog"
"github.com/openmeterio/openmeter/openmeter/subscription"
subscriptionaddon "github.com/openmeterio/openmeter/openmeter/subscription/addon"
addondiff "github.com/openmeterio/openmeter/openmeter/subscription/addon/diff"
subscriptiontestutils "github.com/openmeterio/openmeter/openmeter/subscription/testutils"
"github.com/openmeterio/openmeter/openmeter/taxcode"
"github.com/openmeterio/openmeter/pkg/clock"
"github.com/openmeterio/openmeter/pkg/datetime"
"github.com/openmeterio/openmeter/pkg/models"
"github.com/openmeterio/openmeter/pkg/timeutil"
)
var now, _ = time.Parse(time.RFC3339, "2025-04-01T00:00:00Z")
func TestApply(t *testing.T) {
type tcDeps struct {
deps subscriptiontestutils.SubscriptionDependencies
}
// TODO: we could write purer tests here (without depending on the services) but this is simply more convenient for now
runWithDeps := func(t *testing.T, fn func(t *testing.T, deps *tcDeps)) {
clock.FreezeTime(now.Add(time.Millisecond))
defer func() {
clock.UnFreeze()
clock.ResetTime()
}()
dbDeps := subscriptiontestutils.SetupDBDeps(t)
defer dbDeps.Cleanup(t)
deps := subscriptiontestutils.NewService(t, dbDeps)
fn(t, &tcDeps{
deps: deps,
})
}
t.Run("Should return nil when there's no quantities listed", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.GetExamplePlanInput(t),
subscriptiontestutils.GetExampleAddonInput(t, productcatalog.EffectivePeriod{
EffectiveFrom: &now,
EffectiveTo: nil,
}),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: now,
ActiveTo: nil,
})
// Let's manually overwrite the quantity, it will be fine now
subsAdd.Quantities = timeutil.NewTimeline([]timeutil.Timed[subscriptionaddon.SubscriptionAddonQuantity]{})
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
require.Nil(t, diffable)
})
})
t.Run("Should add the new item to the subscription", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.GetExamplePlanInput(t),
subscriptiontestutils.BuildAddonForTesting(t,
productcatalog.EffectivePeriod{
EffectiveFrom: &now,
EffectiveTo: nil,
},
productcatalog.AddonInstanceTypeSingle,
subscriptiontestutils.ExampleAddonRateCard2.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: now,
ActiveTo: nil,
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// New item should be present in all phases
for _, p := range spec.GetSortedPhases() {
b, _ := json.MarshalIndent(p, "", " ")
itemHistory, ok := p.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard2.Key()]
require.True(t, ok, "item history missing in phase %s, got %+v, \nfull: %s", p.PhaseKey, lo.Keys(p.ItemsByKey), string(b))
// It should have a single entry in all phases
require.Len(t, itemHistory, 1)
item := itemHistory[0]
// It should last for the entire phase
pCad, _ := spec.GetPhaseCadence(p.PhaseKey)
cad := item.GetCadence(pCad)
require.True(t, cad.Equal(pCad))
// It should not have any overrides
require.Nil(t, item.ActiveFromOverrideRelativeToPhaseStart)
require.Nil(t, item.ActiveToOverrideRelativeToPhaseStart)
// It should not have any owner annotations
require.Empty(t, subscription.AnnotationParser.ListOwnerSubSystems(item.Annotations))
// It should have the proper RateCard info
require.True(t, subscriptiontestutils.ExampleAddonRateCard2.Equal(item.RateCard))
}
})
})
t.Run("Should add multiple instances of new item to the subscription", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
exampleAddonRateCard3, ok := (subscriptiontestutils.ExampleAddonRateCard3.Clone()).(*productcatalog.FlatFeeRateCard)
require.True(t, ok, "expected FlatFeeRateCard, got %T", exampleAddonRateCard3)
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.GetExamplePlanInput(t),
subscriptiontestutils.BuildAddonForTesting(t,
productcatalog.EffectivePeriod{
EffectiveFrom: &now,
EffectiveTo: nil,
},
productcatalog.AddonInstanceTypeSingle,
exampleAddonRateCard3,
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: now,
ActiveTo: nil,
})
// Let's just overwrite the quantity, it will be fine now
val := subsAdd.Quantities.GetAt(0).GetValue()
val.Quantity = 3
subsAdd.Quantities = timeutil.NewTimeline([]timeutil.Timed[subscriptionaddon.SubscriptionAddonQuantity]{
val.AsTimed(),
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// New item should be present in all phases
for _, p := range spec.GetSortedPhases() {
b, _ := json.MarshalIndent(p, "", " ")
itemHistory, ok := p.ItemsByKey[exampleAddonRateCard3.Key()]
require.True(t, ok, "item history missing in phase %s, got %+v, \nfull: %s", p.PhaseKey, lo.Keys(p.ItemsByKey), string(b))
// It should have a single entry in all phases
require.Len(t, itemHistory, 1)
item := itemHistory[0]
// It should last for the entire phase
pCad, _ := spec.GetPhaseCadence(p.PhaseKey)
cad := item.GetCadence(pCad)
require.True(t, cad.Equal(pCad))
// It should not have any overrides
require.Nil(t, item.ActiveFromOverrideRelativeToPhaseStart)
require.Nil(t, item.ActiveToOverrideRelativeToPhaseStart)
// It should not have any owner annotations
require.Empty(t, subscription.AnnotationParser.ListOwnerSubSystems(item.Annotations))
pr, _ := item.RateCard.AsMeta().Price.AsFlat()
require.Equal(t, int64(300), pr.Amount.IntPart())
// It should have the proper RateCard info, which is price * quantity + bool access
compareRateCardsWithAmountChange(t, exampleAddonRateCard3, 100*3, item.RateCard, "phase %s", p.PhaseKey)
}
})
})
t.Run("Should add item for defined cadence of the addon", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: lo.ToPtr(now),
}
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.GetExamplePlanInput(t),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeSingle,
subscriptiontestutils.ExampleAddonRateCard3.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
subAddCadence := models.CadencedModel{
ActiveFrom: now.AddDate(0, 0, 3),
ActiveTo: lo.ToPtr(now.AddDate(0, 1, 8)),
}
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, subAddCadence)
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// We should have items in the first 2 phases, then none in later phases
for pIdx, p := range spec.GetSortedPhases() {
if pIdx >= 2 {
require.NotContains(t, p.ItemsByKey, subscriptiontestutils.ExampleAddonRateCard3.Key())
continue
}
b, _ := json.MarshalIndent(p, "", " ")
items, ok := p.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard3.Key()]
require.True(t, ok, "item missing in phase %s, got %+v, \nfull: %s", p.PhaseKey, lo.Keys(p.ItemsByKey), b)
require.Len(t, items, 1)
item := items[0]
pCad, err := spec.GetPhaseCadence(p.PhaseKey)
require.NoError(t, err)
cad := item.GetCadence(pCad)
// Items should always fall in the effective period
require.True(t, effPer.AsPeriod().IsSupersetOf(cad.AsPeriod()), "phase %s: item %s not in effective period %s", p.PhaseKey, cad.AsPeriod(), effPer.AsPeriod())
// And should always be in the phase
require.True(t, pCad.AsPeriod().IsSupersetOf(cad.AsPeriod()), "phase %s: item %s not in phase %s", p.PhaseKey, cad.AsPeriod(), pCad.AsPeriod())
// Now lets be exact on how this should look
switch pIdx {
case 0:
require.True(t, cad.ActiveFrom.Equal(subAddCadence.ActiveFrom))
require.True(t, cad.ActiveTo.Equal(*pCad.ActiveTo))
case 1:
require.True(t, cad.ActiveFrom.Equal(pCad.ActiveFrom))
require.True(t, cad.ActiveTo.Equal(*subAddCadence.ActiveTo))
}
}
})
})
t.Run("Should add a boolean entitlement to an existing item without entitlement with proper annotations", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
env := buildSubAndAddon(
t,
&deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(nil, subscriptiontestutils.ExampleRateCard5ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t, productcatalog.EffectivePeriod{
EffectiveFrom: &now,
}, productcatalog.AddonInstanceTypeMultiple, subscriptiontestutils.ExampleAddonRateCard6.Clone()),
models.CadencedModel{
ActiveFrom: now,
ActiveTo: nil,
},
)
spec := env.subView.Spec
// Let's apply the diff
err := spec.Apply(env.diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// Let's assert that we have a boolean entitlement and the item has the proper annotations
items := spec.Phases["test_phase_1"].ItemsByKey[subscriptiontestutils.ExampleRateCard5ForAddons.Key()]
require.Len(t, items, 1)
item := items[0]
require.Equal(t, 1, subscription.AnnotationParser.GetBooleanEntitlementCount(item.Annotations))
})
})
t.Run("Should increment boolean entitlement count annotation", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
env := buildSubAndAddon(
t,
&deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(nil, subscriptiontestutils.ExampleRateCard4ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t, productcatalog.EffectivePeriod{
EffectiveFrom: &now,
}, productcatalog.AddonInstanceTypeMultiple, subscriptiontestutils.ExampleAddonRateCard6.Clone()),
models.CadencedModel{
ActiveFrom: now,
ActiveTo: nil,
},
)
spec := env.subView.Spec
item := spec.Phases["test_phase_1"].ItemsByKey[subscriptiontestutils.ExampleAddonRateCard6.Key()][0]
require.Equal(t, 1, subscription.AnnotationParser.GetBooleanEntitlementCount(item.Annotations))
// Let's apply the diff
err := spec.Apply(env.diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// Let's assert that we have a boolean entitlement and the item has the proper annotations
items := spec.Phases["test_phase_1"].ItemsByKey[subscriptiontestutils.ExampleAddonRateCard6.Key()]
require.Len(t, items, 1)
item = items[0]
require.Equal(t, 2, subscription.AnnotationParser.GetBooleanEntitlementCount(item.Annotations))
})
})
t.Run("Should add a new item for new key with boolean entitlement with proper annotations", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
env := buildSubAndAddon(
t,
&deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(nil, subscriptiontestutils.ExampleRateCard2.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t, productcatalog.EffectivePeriod{
EffectiveFrom: &now,
}, productcatalog.AddonInstanceTypeMultiple, subscriptiontestutils.ExampleAddonRateCard6.Clone()),
models.CadencedModel{
ActiveFrom: now,
ActiveTo: nil,
},
)
spec := env.subView.Spec
// Let's apply the diff
err := spec.Apply(env.diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// Let's assert that we have a boolean entitlement and the item has the proper annotations
items := spec.Phases["test_phase_1"].ItemsByKey[subscriptiontestutils.ExampleAddonRateCard6.Key()]
require.Len(t, items, 1)
item := items[0]
require.Equal(t, 1, subscription.AnnotationParser.GetBooleanEntitlementCount(item.Annotations))
})
})
t.Run("Should update an existing Item that fills its entire phase", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: lo.ToPtr(now.AddDate(0, 0, 0)),
EffectiveTo: nil,
}
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(lo.ToPtr(datetime.MustParseDuration(t, "P1M")), subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
AddPhase(nil, subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeSingle,
subscriptiontestutils.ExampleAddonRateCard4.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
taxCodeID := lookupTaxCodeID(t, deps.deps, "txcd_10000000")
rc3 := withTaxCodeID(&subscriptiontestutils.ExampleRateCard3ForAddons, taxCodeID)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: *effPer.EffectiveFrom,
ActiveTo: effPer.EffectiveTo,
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// We should have the updated items in both phases
for _, p := range spec.GetSortedPhases() {
items, ok := p.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()]
require.True(t, ok, "item missing in phase %s, got %+v", p.PhaseKey, lo.Keys(p.ItemsByKey))
require.Len(t, items, 1)
item := items[0]
pc, err := spec.GetPhaseCadence(p.PhaseKey)
require.NoError(t, err)
cad := item.GetCadence(pc)
require.True(t, cad.ActiveFrom.Equal(pc.ActiveFrom))
compareRateCardsWithAmountChange(t, rc3, 100*2, item.RateCard, "phase %s", p.PhaseKey)
}
})
})
t.Run("Should partially update an existing item in accordance with the cadence", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: lo.ToPtr(now),
EffectiveTo: nil,
}
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(lo.ToPtr(datetime.MustParseDuration(t, "P1M")), subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
AddPhase(nil, subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeSingle,
subscriptiontestutils.ExampleAddonRateCard4.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
taxCodeID := lookupTaxCodeID(t, deps.deps, "txcd_10000000")
rc3 := withTaxCodeID(&subscriptiontestutils.ExampleRateCard3ForAddons, taxCodeID)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: now.AddDate(0, 0, 5),
ActiveTo: effPer.EffectiveTo,
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// Let's check the first phase looks as we should
p1 := spec.GetSortedPhases()[0]
b, _ := json.MarshalIndent(p1, "", " ")
require.Contains(t, p1.ItemsByKey, subscriptiontestutils.ExampleAddonRateCard4.Key(), "looked for: %s, full: %s", subscriptiontestutils.ExampleAddonRateCard4.Key(), string(b))
require.Len(t, p1.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()], 2)
items := p1.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()]
pCad, err := spec.GetPhaseCadence(p1.PhaseKey)
require.NoError(t, err)
// First item should be from 1 to 5, second from 5 to end of phase
cad1 := items[0].GetCadence(pCad)
require.True(t, cad1.ActiveFrom.Equal(pCad.ActiveFrom))
require.True(t, cad1.ActiveTo.Equal(now.AddDate(0, 0, 5)))
cad2 := items[1].GetCadence(pCad)
require.True(t, cad2.ActiveFrom.Equal(now.AddDate(0, 0, 5)))
require.True(t, cad2.ActiveTo.Equal(*pCad.ActiveTo))
// First item should have the original rate card
compareRateCardsWithAmountChange(t, rc3, 100, items[0].RateCard, "phase %s", p1.PhaseKey)
// Second item should have the updated rate card
compareRateCardsWithAmountChange(t, rc3, 100*2, items[1].RateCard, "phase %s", p1.PhaseKey)
})
})
t.Run("Should partially update an existing item in accordance with the cadence - but for multi instance", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: lo.ToPtr(now),
EffectiveTo: nil,
}
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(lo.ToPtr(datetime.MustParseDuration(t, "P1M")), subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
AddPhase(nil, subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeSingle,
subscriptiontestutils.ExampleAddonRateCard4.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
taxCodeID := lookupTaxCodeID(t, deps.deps, "txcd_10000000")
rc3 := withTaxCodeID(&subscriptiontestutils.ExampleRateCard3ForAddons, taxCodeID)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: now.AddDate(0, 0, 5),
ActiveTo: effPer.EffectiveTo,
})
// Lets just overwrite the quantity, it will be fine now
val := subsAdd.Quantities.GetAt(0).GetValue()
val.Quantity = 4
subsAdd.Quantities = timeutil.NewTimeline([]timeutil.Timed[subscriptionaddon.SubscriptionAddonQuantity]{
val.AsTimed(),
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// Let's check the first phase looks as we should
{
p1 := spec.GetSortedPhases()[0]
require.Contains(t, p1.ItemsByKey, subscriptiontestutils.ExampleAddonRateCard4.Key())
require.Len(t, p1.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()], 2)
items := p1.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()]
pCad, err := spec.GetPhaseCadence(p1.PhaseKey)
require.NoError(t, err)
// First item should be from 1 to 5, second from 5 to end of phase
cad1 := items[0].GetCadence(pCad)
require.True(t, cad1.ActiveFrom.Equal(pCad.ActiveFrom))
require.True(t, cad1.ActiveTo.Equal(now.AddDate(0, 0, 5)))
cad2 := items[1].GetCadence(pCad)
require.True(t, cad2.ActiveFrom.Equal(now.AddDate(0, 0, 5)))
require.True(t, cad2.ActiveTo.Equal(*pCad.ActiveTo))
// First item should have the original rate card
compareRateCardsWithAmountChange(t, rc3, 100, items[0].RateCard, "phase %s", p1.PhaseKey)
// Second item should have the updated rate card
compareRateCardsWithAmountChange(t, rc3, 100*(1+4), items[1].RateCard, "phase %s", p1.PhaseKey)
}
// Lets check the second phase
{
p2 := spec.GetSortedPhases()[1]
require.Contains(t, p2.ItemsByKey, subscriptiontestutils.ExampleAddonRateCard4.Key())
items := p2.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()]
require.Len(t, items, 1)
item := items[0]
pCad, err := spec.GetPhaseCadence(p2.PhaseKey)
require.NoError(t, err)
cad := item.GetCadence(pCad)
require.True(t, cad.ActiveFrom.Equal(pCad.ActiveFrom))
require.Nil(t, cad.ActiveTo)
compareRateCardsWithAmountChange(t, rc3, 100*(1+4), item.RateCard, "phase %s", p2.PhaseKey)
}
})
})
t.Run("Should guarantee access is continuous across changing items", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
t0 := now
clock.FreezeTime(t0.Add(time.Millisecond)) // Addons are written so that effective period is exclusive on both ends :)
defer clock.UnFreeze()
t1 := now.AddDate(0, 0, 5)
t2 := t1.AddDate(0, 1, 5)
t3 := t2.AddDate(0, 0, 6)
t4 := t3.AddDate(0, 0, 9)
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: &now,
}
subAddCadence := models.CadencedModel{
ActiveFrom: t1,
ActiveTo: lo.ToPtr(t4),
}
p, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(nil, subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeSingle,
subscriptiontestutils.ExampleAddonRateCard4.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, p, now)
_, err := deps.deps.SubscriptionService.GetView(context.Background(), subView.Subscription.NamespacedID)
require.NoError(t, err)
subsAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, subAddCadence)
diffable, err := addondiff.GetDiffableFromAddon(subView, subsAdd)
require.NoError(t, err)
spec := subView.Spec
// Let's just manipulate the spec object directly
ogItem := spec.Phases["test_phase_1"].ItemsByKey[subscriptiontestutils.ExampleRateCard3ForAddons.Key()][0]
spec.Phases["test_phase_1"].ItemsByKey[subscriptiontestutils.ExampleRateCard3ForAddons.Key()] = []*subscription.SubscriptionItemSpec{
// First, before gap
{
CreateSubscriptionItemInput: subscription.CreateSubscriptionItemInput{
CreateSubscriptionItemPlanInput: subscription.CreateSubscriptionItemPlanInput{
PhaseKey: spec.Phases["test_phase_1"].PhaseKey,
ItemKey: subscriptiontestutils.ExampleRateCard3ForAddons.Key(),
RateCard: subscriptiontestutils.ExampleRateCard3ForAddons.Clone(),
},
CreateSubscriptionItemCustomerInput: subscription.CreateSubscriptionItemCustomerInput{
ActiveToOverrideRelativeToPhaseStart: lo.ToPtr(datetime.ISODurationBetween(t0, t2)),
},
Annotations: ogItem.Annotations,
},
},
// Second, after gap
{
CreateSubscriptionItemInput: subscription.CreateSubscriptionItemInput{
CreateSubscriptionItemPlanInput: subscription.CreateSubscriptionItemPlanInput{
PhaseKey: spec.Phases["test_phase_1"].PhaseKey,
ItemKey: subscriptiontestutils.ExampleRateCard3ForAddons.Key(),
RateCard: subscriptiontestutils.ExampleRateCard3ForAddons.Clone(),
},
CreateSubscriptionItemCustomerInput: subscription.CreateSubscriptionItemCustomerInput{
ActiveFromOverrideRelativeToPhaseStart: lo.ToPtr(datetime.ISODurationBetween(t0, t3)),
},
Annotations: ogItem.Annotations,
},
},
}
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
// Now let's make sure that we have 5 items:
key := subscriptiontestutils.ExampleRateCard3ForAddons.Key()
phase := spec.GetSortedPhases()[0]
pCad, err := spec.GetPhaseCadence(phase.PhaseKey)
require.NoError(t, err)
require.Contains(t, phase.ItemsByKey, key)
require.Len(t, phase.ItemsByKey[key], 5)
items := phase.ItemsByKey[key]
// [t0-t1]: ExampleRateCard3ForAddons
require.True(t, items[0].GetCadence(pCad).ActiveFrom.Equal(t0))
require.True(t, items[0].GetCadence(pCad).ActiveTo.Equal(t1))
compareRateCardsWithAmountChange(t, &subscriptiontestutils.ExampleRateCard3ForAddons, 100, items[0].RateCard, "phase %s", phase.PhaseKey)
// [t1-t2]: ExampleRateCard3ForAddons + ExampleAddonRateCard4
require.True(t, items[1].GetCadence(pCad).ActiveFrom.Equal(t1))
require.True(t, items[1].GetCadence(pCad).ActiveTo.Equal(t2))
compareRateCardsWithAmountChange(t, &subscriptiontestutils.ExampleRateCard3ForAddons, 100*2, items[1].RateCard, "phase %s", phase.PhaseKey)
require.Equal(t, ogItem.Annotations, items[1].Annotations, "annotations should be the same")
// [t2-t3]: ExampleAddonRateCard4
require.True(t, items[2].GetCadence(pCad).ActiveFrom.Equal(t2))
require.True(t, items[2].GetCadence(pCad).ActiveTo.Equal(t3))
compareRateCardsWithAmountChange(t, subsAdd.RateCards[0].AddonRateCard.RateCard.(*productcatalog.FlatFeeRateCard), 100, items[2].RateCard, "phase %s", phase.PhaseKey)
// [t3-t4]: ExampleRateCard3ForAddons + ExampleAddonRateCard4
require.True(t, items[3].GetCadence(pCad).ActiveFrom.Equal(t3))
require.True(t, items[3].GetCadence(pCad).ActiveTo.Equal(t4))
compareRateCardsWithAmountChange(t, &subscriptiontestutils.ExampleRateCard3ForAddons, 100*2, items[3].RateCard, "phase %s", phase.PhaseKey)
require.Equal(t, ogItem.Annotations, items[3].Annotations, "annotations should be the same")
// [t4-open]: ExampleRateCard3ForAddons
require.True(t, items[4].GetCadence(pCad).ActiveFrom.Equal(t4))
require.Nil(t, items[4].GetCadence(pCad).ActiveTo)
compareRateCardsWithAmountChange(t, &subscriptiontestutils.ExampleRateCard3ForAddons, 100, items[4].RateCard, "phase %s", phase.PhaseKey)
})
})
t.Run("Should create multiple rate cards in the addon", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
// we'll reuse this for subsadd cadence too
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: lo.ToPtr(now),
EffectiveTo: nil,
}
pl, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(nil, subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeMultiple,
subscriptiontestutils.ExampleAddonRateCard4.Clone(),
subscriptiontestutils.ExampleAddonRateCard3.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, pl, now)
taxCodeID := lookupTaxCodeID(t, deps.deps, "txcd_10000000")
rc3 := withTaxCodeID(&subscriptiontestutils.ExampleRateCard3ForAddons, taxCodeID)
subAdd := subscriptiontestutils.CreateAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, models.CadencedModel{
ActiveFrom: *effPer.EffectiveFrom,
ActiveTo: effPer.EffectiveTo,
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
p, ok := spec.Phases["test_phase_1"]
require.True(t, ok)
pCad, err := spec.GetPhaseCadence(p.PhaseKey)
require.NoError(t, err)
// Should update ExampleRateCard3ForAddons with ExampleAddonRateCard4
require.Contains(t, p.ItemsByKey, subscriptiontestutils.ExampleRateCard3ForAddons.Key())
items := p.ItemsByKey[subscriptiontestutils.ExampleRateCard3ForAddons.Key()]
require.Len(t, items, 1)
item := items[0]
require.True(t, item.GetCadence(pCad).ActiveFrom.Equal(now))
require.Nil(t, item.GetCadence(pCad).ActiveTo)
compareRateCardsWithAmountChange(t, rc3, 100*2, item.RateCard, "phase %s", p.PhaseKey)
// Should create ExampleAddonRateCard3
require.Contains(t, p.ItemsByKey, subscriptiontestutils.ExampleAddonRateCard3.Key())
items = p.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard3.Key()]
require.Len(t, items, 1)
item = items[0]
require.True(t, item.GetCadence(pCad).ActiveFrom.Equal(now))
require.Nil(t, item.GetCadence(pCad).ActiveTo)
compareRateCardsWithAmountChange(t, &subscriptiontestutils.ExampleAddonRateCard3, 100, item.RateCard, "phase %s", p.PhaseKey)
})
})
}
func TestApplyWithMultiInstance(t *testing.T) {
type tcDeps struct {
deps subscriptiontestutils.SubscriptionDependencies
}
runWithDeps := func(t *testing.T, fn func(t *testing.T, deps *tcDeps)) {
clock.FreezeTime(now.Add(time.Millisecond))
defer func() {
clock.UnFreeze()
clock.ResetTime()
}()
dbDeps := subscriptiontestutils.SetupDBDeps(t)
defer dbDeps.Cleanup(t)
deps := subscriptiontestutils.NewService(t, dbDeps)
fn(t, &tcDeps{
deps: deps,
})
}
t.Run("Should create items in phase according to quantities", func(t *testing.T) {
runWithDeps(t, func(t *testing.T, deps *tcDeps) {
t0 := now
t1 := t0.AddDate(0, 0, 1)
t2 := t1.AddDate(0, 0, 1)
effPer := productcatalog.EffectivePeriod{
EffectiveFrom: lo.ToPtr(now),
EffectiveTo: nil,
}
pl, a := subscriptiontestutils.CreatePlanWithAddon(
t,
deps.deps,
subscriptiontestutils.BuildTestPlanInput(t).
AddPhase(nil, subscriptiontestutils.ExampleRateCard3ForAddons.Clone()).
Build(),
subscriptiontestutils.BuildAddonForTesting(t,
effPer,
productcatalog.AddonInstanceTypeMultiple,
subscriptiontestutils.ExampleAddonRateCard4.Clone(),
),
)
subView := subscriptiontestutils.CreateSubscriptionFromPlan(t, &deps.deps, pl, now)
taxCodeID := lookupTaxCodeID(t, deps.deps, "txcd_10000000")
rc3 := withTaxCodeID(&subscriptiontestutils.ExampleRateCard3ForAddons, taxCodeID)
subAdd := subscriptiontestutils.CreateMultiInstanceAddonForSubscription(t, &deps.deps, subView.Subscription.NamespacedID, a.NamespacedID, []subscriptionaddon.CreateSubscriptionAddonQuantityInput{
{
ActiveFrom: t1,
Quantity: 1,
},
{
ActiveFrom: t2,
Quantity: 2,
},
})
diffable, err := addondiff.GetDiffableFromAddon(subView, subAdd)
require.NoError(t, err)
spec := subView.Spec
err = spec.Apply(diffable.GetApplies(), subscription.ApplyContext{CurrentTime: now})
require.NoError(t, err)
p, ok := spec.Phases["test_phase_1"]
require.True(t, ok)
pCad, err := spec.GetPhaseCadence(p.PhaseKey)
require.NoError(t, err)
require.Contains(t, p.ItemsByKey, subscriptiontestutils.ExampleAddonRateCard4.Key())
require.Len(t, p.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()], 3)
items := p.ItemsByKey[subscriptiontestutils.ExampleAddonRateCard4.Key()]
// First item: from t0 to t1, ExampleRateCard3ForAddons
require.True(t, items[0].GetCadence(pCad).ActiveFrom.Equal(t0))
require.True(t, items[0].GetCadence(pCad).ActiveTo.Equal(t1))
compareRateCardsWithAmountChange(t, rc3, 100*1, items[0].RateCard, "phase %s", p.PhaseKey)
// Second item: from t1 to t2, ExampleRateCard3ForAddons + ExampleAddonRateCard4
require.True(t, items[1].GetCadence(pCad).ActiveFrom.Equal(t1))
require.True(t, items[1].GetCadence(pCad).ActiveTo.Equal(t2))
compareRateCardsWithAmountChange(t, rc3, 100*2, items[1].RateCard, "phase %s", p.PhaseKey)
// Third item: from t2 to open, ExampleRateCard3ForAddons + 2 x ExampleAddonRateCard4
require.True(t, items[2].GetCadence(pCad).ActiveFrom.Equal(t2))
require.Nil(t, items[2].GetCadence(pCad).ActiveTo)
compareRateCardsWithAmountChange(t, rc3, 100*3, items[2].RateCard, "phase %s", p.PhaseKey)
})
})
}
// lookupTaxCodeID resolves the TaxCode entity ID for a given Stripe tax code from the database.
// This is used to set the expected TaxCodeID on test rate cards after plan creation resolves them.
func lookupTaxCodeID(t *testing.T, deps subscriptiontestutils.SubscriptionDependencies, stripeCode string) *string {
t.Helper()
tc, err := deps.TaxCodeService.GetTaxCodeByAppMapping(context.Background(), taxcode.GetTaxCodeByAppMappingInput{
Namespace: subscriptiontestutils.ExampleNamespace,
AppType: app.AppTypeStripe,
TaxCode: stripeCode,
})
require.NoError(t, err)
return &tc.ID
}
// withTaxCodeID clones a FlatFeeRateCard and sets the TaxCodeID on its TaxConfig.
func withTaxCodeID(rc *productcatalog.FlatFeeRateCard, taxCodeID *string) *productcatalog.FlatFeeRateCard {
clone := rc.Clone().(*productcatalog.FlatFeeRateCard)
if clone.TaxConfig != nil {
clone.TaxConfig.TaxCodeID = taxCodeID
}
return clone
}
func compareRateCardsWithAmountChange(t *testing.T, baseTarget *productcatalog.FlatFeeRateCard, targetAmount int, value productcatalog.RateCard, msgAndArgs ...interface{}) {
t.Helper()
targetMeta := baseTarget.RateCardMeta.Clone()
targetMeta.Price = productcatalog.NewPriceFrom(productcatalog.FlatPrice{
Amount: alpacadecimal.NewFromInt(int64(targetAmount)),
PaymentTerm: productcatalog.InAdvancePaymentTerm,
})
target := &productcatalog.FlatFeeRateCard{
RateCardMeta: targetMeta,
BillingCadence: baseTarget.BillingCadence,
}
b1, _ := json.MarshalIndent(value, "", " ")
b2, _ := json.MarshalIndent(target, "", " ")
msgX := fmt.Sprintf("item %s not equal to target %s", b1, b2)
left := target.Clone()
left.SetFeature(nil, left.GetFeatureKey())
right := value.Clone()
right.SetFeature(nil, right.GetFeatureKey())
if len(msgAndArgs) > 0 {
customMsg := fmt.Sprintf(msgAndArgs[0].(string), msgAndArgs[1:]...)
require.True(t, left.Equal(right), "%s: %s", customMsg, msgX)
} else {
require.True(t, left.Equal(right), msgX)
}
}
|