btlqql opened a new pull request, #4041:
URL: https://github.com/apache/rocketmq-dashboard/pull/4041

   ## Summary
   Add a focused Vitest regression case for Tencent cloud catalog API requests.
   
   ## Root cause
   The current test suite does not cover Tencent cloud catalog API requests, so 
the behavior could regress without a failing test.
   
   ## Changes
   - Add regression coverage in $(@{Slug=tencent-catalog; Focus=Tencent cloud 
catalog API requests; PrTitle=test(tencent-catalog): cover cloud catalog API 
requests; TestFile=web/src/api/__tests__/tencentCatalog.test.ts; Mode=new; 
Append=/*
    * Licensed to the Apache Software Foundation (ASF) under one or more
    * contributor license agreements.  See the NOTICE file distributed with
    * this work for additional information regarding copyright ownership.
    * The ASF 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 MockAdapter from 'axios-mock-adapter';
   import { afterEach, beforeEach, describe, expect, it } from 'vitest';
   import client from '../client';
   import { listTencentInstances, listTencentRegions } from '../tencentCatalog';
   
   const mock = new MockAdapter(client);
   
   describe('tencentCatalog API', () => {
     beforeEach(() => {
       mock.reset();
     });
   
     afterEach(() => {
       mock.reset();
     });
   
     it('lists Tencent regions for a credential', async () => {
       const regions = [{ regionId: 'ap-guangzhou', regionName: '广州' }];
       mock.onGet('/cloud/tencent/regions').reply((config) => {
         expect(config.params).toEqual({ credentialId: 7 });
         return [200, { data: regions }];
       });
   
       await expect(listTencentRegions(7)).resolves.toEqual(regions);
     });
   
     it('forwards optional search when listing Tencent instances', async () => {
       const instances = [{ instanceId: 'rocketmq-prod', instanceName: 'prod' 
}];
       mock.onGet('/cloud/tencent/instances').reply((config) => {
         expect(config.params).toEqual({
           credentialId: 7,
           regionId: 'ap-guangzhou',
           search: 'prod',
         });
         return [200, { data: instances }];
       });
   
       await expect(
         listTencentInstances(7, 'ap-guangzhou', 'prod'),
       ).resolves.toEqual(instances);
     });
   });}.TestFile).
   
   ## Testing
   Commands run:
   - cd web
   - 
   px vitest run src/api/__tests__/tencentCatalog.test.ts
   - cd ..
   - git diff --check
   
   Actual results:
   - Vitest: $testFilesLine, $testsLine.
   - git diff --check: no output, exit code 0.
   
   I did not run the full Maven/Java server suite on this Windows host because 
Maven is not installed and the server targets Java 21 while only Java 17 is 
available. This PR changes web test code only.
   
   Fixes #4040
   
   Assisted-by: OpenAI:Codex (GPT-5)
   Percentage of AI-generated code: 100


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to