feat: manually mirror opencoze's code from bytedance

Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
fanlv
2025-07-20 17:36:12 +08:00
commit 890153324f
14811 changed files with 1923430 additions and 0 deletions

View File

@@ -0,0 +1,134 @@
/*
* 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, beforeEach } from 'vitest';
import { renderHook, act } from '@testing-library/react';
import { useValue } from '../../src/hooks/use-value';
import { localStorageService } from '../../src/core';
describe('useValue', () => {
const permanentKey = 'workflow-toolbar-role-onboarding-hidden';
beforeEach(() => {
localStorage.clear();
localStorageService.setUserId(undefined);
});
it('应该返回存储的值', async () => {
const value = 'test-value';
localStorageService.setValue(permanentKey, value);
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
const { result } = renderHook(() => useValue(permanentKey));
expect(result.current).toBe(value);
});
it('当值改变时应该更新', async () => {
const { result } = renderHook(() => useValue(permanentKey));
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
await act(async () => {
localStorageService.setValue(permanentKey, 'new-value');
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
});
expect(result.current).toBe('new-value');
});
it('当值被删除时应该返回 undefined', async () => {
localStorageService.setValue(permanentKey, 'test-value');
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
const { result } = renderHook(() => useValue(permanentKey));
await act(async () => {
localStorageService.setValue(permanentKey, undefined);
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
});
expect(result.current).toBeUndefined();
});
it('卸载时应该清理事件监听', async () => {
const { unmount } = renderHook(() => useValue(permanentKey));
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
unmount();
// 确保不会触发已卸载组件的状态更新
localStorageService.setValue(permanentKey, 'new-value');
// 如果事件监听没有被清理,这里会抛出 React 警告
});
describe('用户相关的值', () => {
// 使用一个确定绑定了用户的 key
const userBindKey = 'coachmark' as const;
const userId = 'test-user-id';
beforeEach(() => {
localStorageService.setUserId(userId);
});
it('应该返回当前用户的值', async () => {
localStorageService.setValue(userBindKey, 'user-value');
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
const { result } = renderHook(() => useValue(userBindKey));
expect(result.current).toBe('user-value');
});
it('切换用户时应该更新值', async () => {
const userId2 = 'test-user-id-2';
localStorageService.setValue(userBindKey, 'user1-value');
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
const { result } = renderHook(() => useValue(userBindKey));
expect(result.current).toBe('user1-value');
await act(async () => {
localStorageService.setUserId(userId2);
localStorageService.setValue(userBindKey, 'user2-value');
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
});
expect(result.current).toBe('user2-value');
await act(async () => {
localStorageService.setUserId(userId);
// 等待事件触发
await new Promise(resolve => setTimeout(resolve, 0));
});
expect(result.current).toBe('user1-value');
});
});
});