-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Rename legacy ES mock accessors (#70432) * rename legacy client mocks * move legacy client mocks to legacy folder * fix usages * adapt new usages * adapt new usages # Conflicts: # x-pack/plugins/security/server/authentication/providers/base.mock.ts # x-pack/plugins/security/server/authentication/providers/saml.test.ts * adapt 7.x usages
- Loading branch information
1 parent
f56a6c3
commit 54c106a
Showing
60 changed files
with
286 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import { Client } from 'elasticsearch'; | ||
import { ILegacyScopedClusterClient } from './scoped_cluster_client'; | ||
import { ILegacyClusterClient, ILegacyCustomClusterClient } from './cluster_client'; | ||
|
||
const createScopedClusterClientMock = (): jest.Mocked<ILegacyScopedClusterClient> => ({ | ||
callAsInternalUser: jest.fn(), | ||
callAsCurrentUser: jest.fn(), | ||
}); | ||
|
||
const createCustomClusterClientMock = (): jest.Mocked<ILegacyCustomClusterClient> => ({ | ||
...createClusterClientMock(), | ||
close: jest.fn(), | ||
}); | ||
|
||
function createClusterClientMock() { | ||
const client: jest.Mocked<ILegacyClusterClient> = { | ||
callAsInternalUser: jest.fn(), | ||
asScoped: jest.fn(), | ||
}; | ||
client.asScoped.mockReturnValue(createScopedClusterClientMock()); | ||
return client; | ||
} | ||
|
||
const createElasticsearchClientMock = () => { | ||
const mocked: jest.Mocked<Client> = { | ||
cat: {} as any, | ||
cluster: {} as any, | ||
indices: {} as any, | ||
ingest: {} as any, | ||
nodes: {} as any, | ||
snapshot: {} as any, | ||
tasks: {} as any, | ||
bulk: jest.fn(), | ||
clearScroll: jest.fn(), | ||
count: jest.fn(), | ||
create: jest.fn(), | ||
delete: jest.fn(), | ||
deleteByQuery: jest.fn(), | ||
deleteScript: jest.fn(), | ||
deleteTemplate: jest.fn(), | ||
exists: jest.fn(), | ||
explain: jest.fn(), | ||
fieldStats: jest.fn(), | ||
get: jest.fn(), | ||
getScript: jest.fn(), | ||
getSource: jest.fn(), | ||
getTemplate: jest.fn(), | ||
index: jest.fn(), | ||
info: jest.fn(), | ||
mget: jest.fn(), | ||
msearch: jest.fn(), | ||
msearchTemplate: jest.fn(), | ||
mtermvectors: jest.fn(), | ||
ping: jest.fn(), | ||
putScript: jest.fn(), | ||
putTemplate: jest.fn(), | ||
reindex: jest.fn(), | ||
reindexRethrottle: jest.fn(), | ||
renderSearchTemplate: jest.fn(), | ||
scroll: jest.fn(), | ||
search: jest.fn(), | ||
searchShards: jest.fn(), | ||
searchTemplate: jest.fn(), | ||
suggest: jest.fn(), | ||
termvectors: jest.fn(), | ||
update: jest.fn(), | ||
updateByQuery: jest.fn(), | ||
close: jest.fn(), | ||
}; | ||
return mocked; | ||
}; | ||
|
||
export const legacyClientMock = { | ||
createScopedClusterClient: createScopedClusterClientMock, | ||
createCustomClusterClient: createCustomClusterClientMock, | ||
createClusterClient: createClusterClientMock, | ||
createElasticsearchClient: createElasticsearchClientMock, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.