Skip to content

Commit

Permalink
addding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nina Ciocanu committed Nov 18, 2024
1 parent a295d90 commit f5ada5a
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Personalization/createFetchDataHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ export default ({
}
const propositions = handles.map((handle) => {
const proposition = {
...handle,
items: handle.items.map((item) => {
item.id = !item.id || item.id === "0" ? uuid() : item.id;
return item;
}),
...handle,
};
return createProposition(proposition);
});
Expand Down
53 changes: 53 additions & 0 deletions test/unit/helpers/createDecoratePropositionForTest2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
Copyright 2024 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
import {
ADOBE_JOURNEY_OPTIMIZER,
ADOBE_TARGET,
} from "../../../src/constants/decisionProvider.js";
import createInteractionStorage from "../../../src/components/Personalization/createInteractionStorage.js";
import createDecorateProposition from "../../../src/components/Personalization/handlers/createDecorateProposition.js";
import {
ALWAYS,
NEVER,
} from "../../../src/constants/propositionInteractionType.js";

export default ({
autoCollectPropositionInteractions = {
[ADOBE_JOURNEY_OPTIMIZER]: ALWAYS,
[ADOBE_TARGET]: NEVER,
},
type,
propositionId = "propositionID",
itemId = "itemId",
trackingLabel = "trackingLabel",
scopeType = "page",
notification = {
id: "notifyId",
scope: "web://mywebsite.com",
scopeDetails: {
something: true,
decisionProvider: ADOBE_JOURNEY_OPTIMIZER,
},
},
} = {}) => {
const { storeInteractionMeta } = createInteractionStorage();
return createDecorateProposition(
autoCollectPropositionInteractions,
type,
propositionId,
itemId,
trackingLabel,
scopeType,
notification,
storeInteractionMeta,
);
};
Empty file.
Empty file.
Empty file.

0 comments on commit f5ada5a

Please sign in to comment.