Skip to content

Add tests for serverless adaptive allocations in inference endpoints UI#249098

Merged
saikatsarkar056 merged 9 commits intoelastic:mainfrom
saikatsarkar056:add_tests_adaptive_allocation
Jan 21, 2026
Merged

Add tests for serverless adaptive allocations in inference endpoints UI#249098
saikatsarkar056 merged 9 commits intoelastic:mainfrom
saikatsarkar056:add_tests_adaptive_allocation

Conversation

@saikatsarkar056
Copy link
Copy Markdown
Contributor

@saikatsarkar056 saikatsarkar056 commented Jan 14, 2026

Summary

Adds tests for serverless adaptive allocations feature (#222726).

Run Tests

yarn test:jest --no-collectCoverage x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common/src/components/inference_service_form_fields.test.tsx

yarn test:jest --no-collectCoverage x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common/src/components/inference_flyout_wrapper.test.tsx

Checklist

Check the PR satisfies following conditions.

Reviewers should verify this PR satisfies this list as well.

  • Any text added follows EUI's writing guidelines, uses sentence case text and includes i18n support
  • Documentation was added for features that require explanation or tutorials
  • Unit or functional tests were updated or added to match the most common scenarios
  • If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the docker list
  • This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The release_note:breaking label should be applied in these situations.
  • Flaky Test Runner was used on any tests changed
  • The PR description includes the appropriate Release Notes section, and the correct release_note:* label is applied per the guidelines
  • Review the backport guidelines and apply applicable backport:* labels.

Identify risks

Does this PR introduce any risks? For example, consider risks like hard to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified risk. Invite stakeholders and evaluate how to proceed before merging.

@saikatsarkar056 saikatsarkar056 requested a review from a team as a code owner January 14, 2026 19:52
@saikatsarkar056 saikatsarkar056 marked this pull request as draft January 14, 2026 19:52
@saikatsarkar056 saikatsarkar056 self-assigned this Jan 16, 2026
@saikatsarkar056 saikatsarkar056 added backport:skip This PR does not require backporting release_note:skip Skip the PR/issue when compiling release notes Team:Search v9.4.0 labels Jan 16, 2026
@saikatsarkar056 saikatsarkar056 marked this pull request as ready for review January 16, 2026 01:17
@saikatsarkar056
Copy link
Copy Markdown
Contributor Author

@elasticmachine merge upstream

@saikatsarkar056
Copy link
Copy Markdown
Contributor Author

@elasticmachine merge upstream

@saikatsarkar056
Copy link
Copy Markdown
Contributor Author

@elasticmachine merge upstream

describe('when enforceAdaptiveAllocations is true (serverless)', () => {
it('shows max_number_of_allocations field for Elasticsearch provider', async () => {
render(
<MockFormProvider>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This render code is repeated a lot - might be worth breaking it out into a function, possible. Didn't test this but something like this might work.

const renderForm = (options: RenderFormOptions = {}) => {
  const {
    enforceAdaptiveAllocations
  } = options;

  return {
    ...render(
       <MockFormProvider>
          <InferenceServiceFormFields
              http={httpMock}
              toasts={notificationsMock.toasts}
              config={{ enforceAdaptiveAllocations }}
            />
          </MockFormProvider>
    )
  };
};

Then you could do const { getByTestId } = renderForm();

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated

@elasticmachine
Copy link
Copy Markdown
Contributor

💛 Build succeeded, but was flaky

Failed CI Steps

Test Failures

  • [job] [logs] FTR Configs #29 / Observability specs (trial) fetching observability alerts details context for AI assistant contextual insights when traces and logs are ingested and logs are not annotated with service.name when service name is specified returns downstream dependencies

Metrics [docs]

✅ unchanged

History

cc @saikatsarkar056

Copy link
Copy Markdown
Contributor

@alvarezmelissa87 alvarezmelissa87 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM ⚡

@saikatsarkar056 saikatsarkar056 merged commit 641e3f4 into elastic:main Jan 21, 2026
16 checks passed
qn895 pushed a commit to qn895/kibana that referenced this pull request Jan 22, 2026
…UI (elastic#249098)

### Summary

Adds tests for serverless adaptive allocations feature (elastic#222726).

### Run Tests

```
yarn test:jest --no-collectCoverage x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common/src/components/inference_service_form_fields.test.tsx

yarn test:jest --no-collectCoverage x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common/src/components/inference_flyout_wrapper.test.tsx

```
### Checklist

Check the PR satisfies following conditions. 

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [x] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [x] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
dennis-tismenko pushed a commit to dennis-tismenko/kibana that referenced this pull request Jan 22, 2026
…UI (elastic#249098)

### Summary

Adds tests for serverless adaptive allocations feature (elastic#222726).

### Run Tests

```
yarn test:jest --no-collectCoverage x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common/src/components/inference_service_form_fields.test.tsx

yarn test:jest --no-collectCoverage x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common/src/components/inference_flyout_wrapper.test.tsx

```
### Checklist

Check the PR satisfies following conditions. 

Reviewers should verify this PR satisfies this list as well.

- [ ] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md)
- [ ]
[Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html)
was added for features that require explanation or tutorials
- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [ ] If a plugin configuration key changed, check if it needs to be
allowlisted in the cloud and added to the [docker
list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker)
- [ ] This was checked for breaking HTTP API changes, and any breaking
changes have been approved by the breaking-change committee. The
`release_note:breaking` label should be applied in these situations.
- [ ] [Flaky Test
Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was
used on any tests changed
- [x] The PR description includes the appropriate Release Notes section,
and the correct `release_note:*` label is applied per the
[guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
- [x] Review the [backport
guidelines](https://docs.google.com/document/d/1VyN5k91e5OVumlc0Gb9RPa3h1ewuPE705nRtioPiTvY/edit?usp=sharing)
and apply applicable `backport:*` labels.

### Identify risks

Does this PR introduce any risks? For example, consider risks like hard
to test bugs, performance regression, potential of data loss.

Describe the risk, its severity, and mitigation for each identified
risk. Invite stakeholders and evaluate how to proceed before merging.

- [ ] [See some risk
examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx)
- [ ] ...

---------

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport:skip This PR does not require backporting release_note:skip Skip the PR/issue when compiling release notes Team:Search v9.4.0

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants