Skip to content

Commit

Permalink
fix: exclude archived features in segments count (#7886)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Aug 15, 2024
1 parent 64a9caa commit a89f051
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 15 deletions.
24 changes: 20 additions & 4 deletions src/lib/features/segment/admin-segment.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -602,16 +602,32 @@ test('Should show usage in features and projects', async () => {
);
const [feature] = await fetchFeatures();
const [strategy] = await fetchFeatureStrategies(feature.name);
//@ts-ignore
await addSegmentsToStrategy([segment.id], strategy.id);

const segments = await fetchSegments();
expect(segments).toMatchObject([
const unusedSegments = await fetchSegments();
expect(unusedSegments).toMatchObject([
{
usedInFeatures: 0,
usedInProjects: 0,
},
]);

await addSegmentsToStrategy([segment.id], strategy.id);
const usedSegments = await fetchSegments();
expect(usedSegments).toMatchObject([
{
usedInFeatures: 1,
usedInProjects: 1,
},
]);

await app.archiveFeature(feature.name, feature.project);
const segmentsWithArchivedFeatures = await fetchSegments();
expect(segmentsWithArchivedFeatures).toMatchObject([
{
usedInFeatures: 0,
usedInProjects: 0,
},
]);
});

describe('detect strategy usage in change requests', () => {
Expand Down
26 changes: 15 additions & 11 deletions src/lib/features/segment/segment-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { isDefined } from '../../util';
const T = {
segments: 'segments',
featureStrategies: 'feature_strategies',
features: 'features',
featureStrategySegment: 'feature_strategy_segment',
};

Expand Down Expand Up @@ -123,17 +124,15 @@ export default class SegmentStore implements ISegmentStore {

private async getAllWithoutChangeRequestUsageData(): Promise<ISegment[]> {
const rows: ISegmentRow[] = await this.db
.select(
this.prefixColumns(),
'used_in_projects',
'used_in_features',
)
.countDistinct(
`${T.featureStrategies}.project_name AS used_in_projects`,
)
.countDistinct(
`${T.featureStrategies}.feature_name AS used_in_features`,
)
.select([
...this.prefixColumns(),
this.db.raw(
`count(distinct case when ${T.features}.archived_at is null then ${T.featureStrategies}.project_name end) as used_in_projects`,
),
this.db.raw(
`count(distinct case when ${T.features}.archived_at is null then ${T.featureStrategies}.feature_name end) as used_in_features`,
),
])
.from(T.segments)
.leftJoin(
T.featureStrategySegment,
Expand All @@ -145,6 +144,11 @@ export default class SegmentStore implements ISegmentStore {
`${T.featureStrategies}.id`,
`${T.featureStrategySegment}.feature_strategy_id`,
)
.leftJoin(
T.features,
`${T.featureStrategies}.feature_name`,
`${T.features}.name`,
)
.groupBy(this.prefixColumns())
.orderBy('name', 'asc');

Expand Down

0 comments on commit a89f051

Please sign in to comment.