This commit is contained in:
Daniel Arantes Loverde
2026-04-17 14:57:53 -03:00
parent 5f7e8b29d5
commit 66de1e3031
3 changed files with 31 additions and 18 deletions

View File

@@ -91,8 +91,9 @@ function createUpstreamStub(options = {}) {
evaluatedAt: "2026-04-16T12:00:00.000Z",
configVersion: 7,
flags: {
"fc.checkout_v2": { enabled: true, variant: "on", payload: null, reason: "rollout" },
"fc.search_ranking_v3": { enabled: false, variant: "off", payload: null, reason: "default" }
"fc.promo": { enabled: true, variant: "on", payload: null, reason: "rollout" },
"fc.promo-codes": { enabled: true, variant: "on", payload: null, reason: "rollout" },
"fc.ios": { enabled: true, variant: "on", payload: null, reason: "audience" }
}
}
})
@@ -118,7 +119,7 @@ function createUpstreamStub(options = {}) {
function bootstrapBody() {
return {
environment: "production",
keys: ["fc.checkout_v2", "fc.search_ranking_v3"],
keys: ["fc.promo", "fc.promo-codes", "fc.ios"],
context: {
subjectType: "customer",
subjectId: "cust_123",
@@ -151,9 +152,10 @@ test("bootstrap sucesso retorna flags simplificadas e raw", async () => {
const json = await response.json();
assert.equal(json.ok, true);
assert.equal(json.configVersion, 7);
assert.equal(json.flags.checkoutV2, true);
assert.equal(json.flags.searchRankingV3, "off");
assert.ok(json.raw["fc.checkout_v2"]);
assert.equal(json.flags.promo, true);
assert.equal(json.flags.promoCodes, true);
assert.equal(json.flags.ios, true);
assert.ok(json.raw["fc.promo"]);
assert.equal(upstream.state.evaluatePayload.context.subjectId, "cust_123");
} finally {
await bff.stop();
@@ -170,7 +172,7 @@ test("bootstrap com 429 devolve fallback sem quebrar cliente", async () => {
ATOMENTA_ORIGIN: `http://127.0.0.1:${upstreamPort}`,
FEATURE_CONTROL_MODULE_TOKEN: "token",
FEATURE_CONTROL_DEFAULTS_JSON: JSON.stringify({
"fc.checkout_v2": { enabled: false, variant: "off" }
"fc.promo": { enabled: false, variant: "off" }
})
});
@@ -184,7 +186,7 @@ test("bootstrap com 429 devolve fallback sem quebrar cliente", async () => {
const json = await response.json();
assert.equal(json.source, "fallback");
assert.equal(json.upstreamError.status, 429);
assert.equal(json.flags.checkoutV2, "off");
assert.equal(json.flags.promo, "off");
} finally {
await bff.stop();
await closeServer(upstream.server);
@@ -234,14 +236,14 @@ test("telemetria de exposure encaminha lote para upstream", async () => {
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
events: [
{ featureKey: "fc.checkout_v2", variant: "on", subjectType: "customer", storeId: "store_1" }
{ featureKey: "fc.promo", variant: "on", subjectType: "customer", storeId: "store_1" }
]
})
});
assert.equal(response.status, 200);
const json = await response.json();
assert.equal(json.ok, true);
assert.equal(upstream.state.exposurePayload.events[0].featureKey, "fc.checkout_v2");
assert.equal(upstream.state.exposurePayload.events[0].featureKey, "fc.promo");
} finally {
await bff.stop();
await closeServer(upstream.server);