feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
157
frontend/packages/arch/bot-tea/__tests__/index.test.ts
Normal file
157
frontend/packages/arch/bot-tea/__tests__/index.test.ts
Normal file
@@ -0,0 +1,157 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed 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 { vi, beforeEach, describe, it, expect } from 'vitest';
|
||||
import { logger } from '@coze-arch/logger';
|
||||
|
||||
import {
|
||||
sendTeaEvent,
|
||||
initBotLandingPageUrl,
|
||||
getBotLandingPageUrl,
|
||||
LANDING_PAGE_URL_KEY,
|
||||
} from '../src';
|
||||
|
||||
vi.mock('@coze-arch/tea', () => ({
|
||||
default: {
|
||||
sendEvent: vi.fn(),
|
||||
},
|
||||
}));
|
||||
|
||||
vi.mock('@coze-arch/logger', () => ({
|
||||
logger: {
|
||||
info: vi.fn(),
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
describe('bot-tea', () => {
|
||||
const mockLocation = 'https://example.com/test';
|
||||
const mockSessionStorage = {
|
||||
getItem: vi.fn(),
|
||||
setItem: vi.fn(),
|
||||
};
|
||||
|
||||
beforeEach(() => {
|
||||
vi.clearAllMocks();
|
||||
// Mock window.location
|
||||
Object.defineProperty(window, 'location', {
|
||||
value: { href: mockLocation },
|
||||
writable: true,
|
||||
});
|
||||
// Mock sessionStorage
|
||||
Object.defineProperty(window, 'sessionStorage', {
|
||||
value: mockSessionStorage,
|
||||
});
|
||||
});
|
||||
|
||||
describe('landing page URL', () => {
|
||||
it('should initialize landing page URL if not exists', () => {
|
||||
mockSessionStorage.getItem.mockReturnValue(null);
|
||||
|
||||
initBotLandingPageUrl();
|
||||
|
||||
expect(mockSessionStorage.setItem).toHaveBeenCalledWith(
|
||||
LANDING_PAGE_URL_KEY,
|
||||
mockLocation,
|
||||
);
|
||||
});
|
||||
|
||||
it('should not initialize landing page URL if already exists', () => {
|
||||
const existingUrl = 'https://example.com/existing';
|
||||
mockSessionStorage.getItem.mockReturnValue(existingUrl);
|
||||
|
||||
initBotLandingPageUrl();
|
||||
|
||||
expect(mockSessionStorage.setItem).not.toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should get landing page URL from session storage', () => {
|
||||
const savedUrl = 'https://example.com/saved';
|
||||
mockSessionStorage.getItem.mockReturnValue(savedUrl);
|
||||
|
||||
const result = getBotLandingPageUrl();
|
||||
|
||||
expect(result).toBe(savedUrl);
|
||||
});
|
||||
|
||||
it('should fallback to current location if no saved URL', () => {
|
||||
mockSessionStorage.getItem.mockReturnValue(null);
|
||||
|
||||
const result = getBotLandingPageUrl();
|
||||
|
||||
expect(result).toBe(mockLocation);
|
||||
});
|
||||
});
|
||||
|
||||
describe('sendTeaEvent', () => {
|
||||
const mockEvent = 'test_event' as any;
|
||||
const mockParams = { foo: 'bar' };
|
||||
|
||||
it('should send event with UG params when FEATURE_ENABLE_TEA_UG is true', () => {
|
||||
// @ts-expect-error - 模拟全局变量
|
||||
window.FEATURE_ENABLE_TEA_UG = true;
|
||||
const savedUrl = 'https://example.com/saved';
|
||||
mockSessionStorage.getItem.mockReturnValue(savedUrl);
|
||||
|
||||
sendTeaEvent(mockEvent, mockParams);
|
||||
|
||||
expect(logger.info).toHaveBeenCalledWith({
|
||||
message: 'send-tea-event',
|
||||
meta: {
|
||||
event: mockEvent,
|
||||
params: {
|
||||
LandingPageUrl: savedUrl,
|
||||
AppId: 510023,
|
||||
EventName: mockEvent,
|
||||
growth_deepevent: '4',
|
||||
foo: 'bar',
|
||||
EventTs: expect.any(Number),
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
it('should send event without UG params when FEATURE_ENABLE_TEA_UG is false', () => {
|
||||
// @ts-expect-error - 模拟全局变量
|
||||
window.FEATURE_ENABLE_TEA_UG = false;
|
||||
|
||||
sendTeaEvent(mockEvent, mockParams);
|
||||
|
||||
expect(logger.info).toHaveBeenCalledWith({
|
||||
message: 'send-tea-event',
|
||||
meta: {
|
||||
event: mockEvent,
|
||||
params: mockParams,
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
it('should handle undefined params', () => {
|
||||
// @ts-expect-error - 模拟全局变量
|
||||
window.FEATURE_ENABLE_TEA_UG = false;
|
||||
|
||||
sendTeaEvent(mockEvent);
|
||||
|
||||
expect(logger.info).toHaveBeenCalledWith({
|
||||
message: 'send-tea-event',
|
||||
meta: {
|
||||
event: mockEvent,
|
||||
params: undefined,
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
175
frontend/packages/arch/bot-tea/__tests__/utils.test.ts
Normal file
175
frontend/packages/arch/bot-tea/__tests__/utils.test.ts
Normal file
@@ -0,0 +1,175 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed 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 { describe, it, expect } from 'vitest';
|
||||
import { ProductEntityType } from '@coze-arch/bot-api/product_api';
|
||||
|
||||
import {
|
||||
convertTemplateType,
|
||||
extractTemplateActionCommonParams,
|
||||
} from '../src/utils';
|
||||
|
||||
describe('utils', () => {
|
||||
describe('convertTemplateType', () => {
|
||||
it('should convert workflow template type', () => {
|
||||
expect(convertTemplateType(ProductEntityType.WorkflowTemplateV2)).toBe(
|
||||
'workflow',
|
||||
);
|
||||
});
|
||||
|
||||
it('should convert imageflow template type', () => {
|
||||
expect(convertTemplateType(ProductEntityType.ImageflowTemplateV2)).toBe(
|
||||
'imageflow',
|
||||
);
|
||||
});
|
||||
|
||||
it('should convert bot template type', () => {
|
||||
expect(convertTemplateType(ProductEntityType.BotTemplate)).toBe('bot');
|
||||
});
|
||||
|
||||
it('should convert project template type', () => {
|
||||
expect(convertTemplateType(ProductEntityType.ProjectTemplate)).toBe(
|
||||
'project',
|
||||
);
|
||||
});
|
||||
|
||||
it('should return unknown for undefined type', () => {
|
||||
expect(convertTemplateType(undefined)).toBe('unknown');
|
||||
});
|
||||
|
||||
it('should return unknown for unrecognized type', () => {
|
||||
expect(convertTemplateType('invalid' as any)).toBe('unknown');
|
||||
});
|
||||
});
|
||||
|
||||
describe('extractTemplateActionCommonParams', () => {
|
||||
it('should extract params from workflow template', () => {
|
||||
const mockDetail = {
|
||||
meta_info: {
|
||||
id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
name: 'Test Template',
|
||||
entity_type: ProductEntityType.WorkflowTemplateV2,
|
||||
is_professional: true,
|
||||
is_free: true,
|
||||
},
|
||||
};
|
||||
|
||||
expect(extractTemplateActionCommonParams(mockDetail)).toEqual({
|
||||
template_id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
template_name: 'Test Template',
|
||||
template_type: 'workflow',
|
||||
template_tag_professional: 'professional',
|
||||
template_tag_prize: 'free',
|
||||
from: '',
|
||||
});
|
||||
});
|
||||
|
||||
it('should extract params from paid template', () => {
|
||||
const mockDetail = {
|
||||
meta_info: {
|
||||
id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
name: 'Test Template',
|
||||
entity_type: ProductEntityType.BotTemplate,
|
||||
is_professional: false,
|
||||
is_free: false,
|
||||
price: {
|
||||
amount: '100',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
expect(extractTemplateActionCommonParams(mockDetail)).toEqual({
|
||||
template_id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
template_name: 'Test Template',
|
||||
template_type: 'bot',
|
||||
template_tag_professional: 'basic',
|
||||
template_tag_prize: 'paid',
|
||||
template_prize_detail: 100,
|
||||
from: '',
|
||||
});
|
||||
});
|
||||
|
||||
it('should extract params from project template', () => {
|
||||
const mockDetail = {
|
||||
meta_info: {
|
||||
id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
name: 'Test Template',
|
||||
entity_type: ProductEntityType.ProjectTemplate,
|
||||
is_professional: false,
|
||||
is_free: true,
|
||||
},
|
||||
project_extra: {
|
||||
template_project_id: 'project-id',
|
||||
},
|
||||
};
|
||||
|
||||
expect(extractTemplateActionCommonParams(mockDetail)).toEqual({
|
||||
template_id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
template_name: 'Test Template',
|
||||
template_type: 'project',
|
||||
entity_copy_id: 'project-id',
|
||||
template_tag_professional: 'basic',
|
||||
template_tag_prize: 'free',
|
||||
from: '',
|
||||
});
|
||||
});
|
||||
|
||||
it('should handle undefined detail', () => {
|
||||
expect(extractTemplateActionCommonParams(undefined)).toEqual({
|
||||
template_id: '',
|
||||
entity_id: '',
|
||||
template_name: '',
|
||||
template_type: 'unknown',
|
||||
template_tag_professional: 'basic',
|
||||
template_tag_prize: 'paid',
|
||||
template_prize_detail: 0,
|
||||
from: '',
|
||||
});
|
||||
});
|
||||
|
||||
it('should handle missing price amount', () => {
|
||||
const mockDetail = {
|
||||
meta_info: {
|
||||
id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
name: 'Test Template',
|
||||
entity_type: ProductEntityType.BotTemplate,
|
||||
is_professional: false,
|
||||
is_free: false,
|
||||
price: {},
|
||||
from: '',
|
||||
},
|
||||
};
|
||||
|
||||
expect(extractTemplateActionCommonParams(mockDetail)).toEqual({
|
||||
template_id: 'test-id',
|
||||
entity_id: 'entity-id',
|
||||
template_name: 'Test Template',
|
||||
template_type: 'bot',
|
||||
template_tag_professional: 'basic',
|
||||
template_tag_prize: 'paid',
|
||||
template_prize_detail: 0,
|
||||
from: '',
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user