123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {fetchOrganizations} from 'sentry/actionCreators/organizations';
- import ConfigStore from 'sentry/stores/configStore';
- describe('fetchOrganizations', function () {
- const api = new MockApiClient();
- const usorg = OrganizationFixture({slug: 'us-org'});
- const deorg = OrganizationFixture({slug: 'de-org'});
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- });
- it('fetches from multiple regions', async function () {
- ConfigStore.set('regions', [
- {name: 'us', url: 'https://us.example.org'},
- {name: 'de', url: 'https://de.example.org'},
- ]);
- const usMock = MockApiClient.addMockResponse({
- url: '/organizations/',
- body: [usorg],
- match: [
- function (_url: string, options: Record<string, any>) {
- return options.host === 'https://us.example.org';
- },
- ],
- });
- const deMock = MockApiClient.addMockResponse({
- url: '/organizations/',
- body: [deorg],
- match: [
- function (_url: string, options: Record<string, any>) {
- return options.host === 'https://de.example.org';
- },
- ],
- });
- const organizations = await fetchOrganizations(api);
- expect(organizations).toHaveLength(2);
- expect(usMock).toHaveBeenCalledTimes(1);
- expect(deMock).toHaveBeenCalledTimes(1);
- });
- });
|