master merged

This commit is contained in:
Daniel Arantes Loverde
2026-06-03 14:52:27 -03:00
parent 980a106661
commit f51319b486
112 changed files with 1051 additions and 1139 deletions

View File

@@ -8,6 +8,11 @@ BFF mínimo para expor flags ao app sem expor `Atomenta-Token` no cliente.
- `POST /feature-control/telemetry/exposure`
- `GET /health`
## Notificações
No momento este BFF cobre apenas Feature Control (`bootstrap` + `exposure`).
Para notificações segmentadas por audiência (`todos`, `feature:fc.ios`), precisamos adicionar o contrato de endpoint de notificações do Atomenta para integrar no app.
## Variáveis de ambiente
- `PORT` (default: `8787`)
@@ -22,8 +27,11 @@ Exemplo de `FEATURE_CONTROL_DEFAULTS_JSON`:
```json
{
"fc.checkout_v2": { "enabled": false, "variant": "off" },
"fc.search_ranking_v3": { "enabled": true, "variant": "on", "payload": { "model": "v3" } }
"fc.promo": { "enabled": true, "variant": "on" },
"fc.promo-codes": { "enabled": true, "variant": "on" },
"fc.android": { "enabled": true, "variant": "on" },
"fc.city-aguai": { "enabled": true, "variant": "on" },
"fc.ios": { "enabled": true, "variant": "on" }
}
```
@@ -32,7 +40,7 @@ Exemplo de `FEATURE_CONTROL_DEFAULTS_JSON`:
```json
{
"environment": "production",
"keys": ["fc.checkout_v2", "fc.search_ranking_v3"],
"keys": ["fc.promo", "fc.promo-codes", "fc.android", "fc.city-aguai", "fc.ios"],
"context": {
"subjectType": "customer",
"subjectId": "cust_123",
@@ -58,11 +66,14 @@ Se o app enviar `Authorization: Bearer <JWT>`, o BFF tenta extrair `subjectId` d
"configVersion": 7,
"evaluatedAt": "2026-04-16T12:00:00.000Z",
"flags": {
"checkoutV2": true,
"searchRankingV3": "off"
"promo": true,
"promoCodes": true,
"android": true,
"cityAguai": true,
"ios": true
},
"raw": {
"fc.checkout_v2": {
"fc.promo": {
"enabled": true,
"variant": "on",
"payload": null,
@@ -87,3 +98,5 @@ FEATURE_CONTROL_MODULE_TOKEN="550e8400-e29b-41d4-a716-44665544000b" npm start
cd feature-control-bff
npm test
```
Autor: Daniel Arantes Loverde

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);