Skip to content

Commit 55313e4

Browse files
authoredSep 10, 2021
fix(insightsMiddleware): throw an error when credentials can't be extracted (#4901)
* fix(insightsMiddleware): throw an error when credentials can't be extracted When api or appId is missing, an error gets thrown by search insights, but that doesn't explain *why* that error gets thrown. Ideally this would also clarify what the next step is (usually making sure to spread the previous search client, or leaving all properties in place, but i'm not too sure how to word that. This doesn't add a new error where there wasn't already one, as the search-insights library threw an error in this case already. * only dev mode, avoid bundle size bloat * can't be bothered with the ts
1 parent 47cdd81 commit 55313e4

File tree

4 files changed

+38
-10
lines changed

4 files changed

+38
-10
lines changed
 

‎src/middlewares/__tests__/createInsightsMiddleware.ts

+26-10
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@ import { createSearchClient } from '../../../test/mock/createSearchClient';
88
import { warning } from '../../lib/utils';
99

1010
describe('insights', () => {
11-
const createTestEnvironment = () => {
11+
const searchClientWithCredentials = createSearchClient({
12+
// @ts-expect-error only available in search client v4
13+
transporter: {
14+
headers: {
15+
'x-algolia-application-id': 'myAppId',
16+
'x-algolia-api-key': 'myApiKey',
17+
},
18+
},
19+
});
20+
const createTestEnvironment = ({
21+
searchClient = searchClientWithCredentials,
22+
} = {}) => {
1223
const { analytics, insightsClient } = createInsights();
1324
const indexName = 'my-index';
1425
const instantSearchInstance = instantsearch({
15-
searchClient: createSearchClient({
16-
// @ts-expect-error only available in search client v4
17-
transporter: {
18-
headers: {
19-
'x-algolia-application-id': 'myAppId',
20-
'x-algolia-api-key': 'myApiKey',
21-
},
22-
},
23-
}),
26+
searchClient,
2427
indexName,
2528
});
2629
instantSearchInstance.start();
@@ -114,6 +117,19 @@ describe('insights', () => {
114117
});
115118
});
116119

120+
it('throws when search client does not have credentials', () => {
121+
const { insightsClient, instantSearchInstance } = createTestEnvironment({
122+
searchClient: createSearchClient(),
123+
});
124+
expect(() =>
125+
createInsightsMiddleware({
126+
insightsClient,
127+
})({ instantSearchInstance })
128+
).toThrowErrorMatchingInlineSnapshot(
129+
`"[insights middleware]: could not extract Algolia credentials from searchClient"`
130+
);
131+
});
132+
117133
it('does not throw without userToken in UMD with the library loaded after the event', () => {
118134
const {
119135
insightsClient,

‎src/middlewares/createInsightsMiddleware.ts

+8
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,14 @@ export const createInsightsMiddleware: CreateInsightsMiddleware = (props) => {
5959

6060
return ({ instantSearchInstance }) => {
6161
const [appId, apiKey] = getAppIdAndApiKey(instantSearchInstance.client);
62+
63+
// search-insights.js also throws an error so dev-only clarification is sufficient
64+
if (__DEV__ && !(appId && apiKey)) {
65+
throw new Error(
66+
'[insights middleware]: could not extract Algolia credentials from searchClient'
67+
);
68+
}
69+
6270
let queuedUserToken: string | undefined = undefined;
6371
let userTokenBeforeInit: string | undefined = undefined;
6472

‎src/widgets/hits/__tests__/hits-integration-test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ const createSearchClient = ({
3131
),
3232
})
3333
),
34+
applicationID: 'latency',
35+
apiKey: '123',
3436
};
3537
};
3638

‎src/widgets/infinite-hits/__tests__/infinite-hits-integration-test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ describe('infiniteHits', () => {
3333
),
3434
}) as any
3535
),
36+
// credentials are stored like this in client v3, but not part of the SearchClient type
37+
...({ applicationID: 'latency', apiKey: '123' } as any),
3638
});
3739
const search = instantsearch({
3840
indexName: 'instant_search',

0 commit comments

Comments
 (0)
Please sign in to comment.