zioinfo-web/frontend/node_modules/react-intersection-observer/test-utils/index.mjs
DESKTOP-TKLFCPRython abd4dde1a8 feat(setup): Claude Code Desktop 자동 설치 + 30일 라이선스 + 서비스 자동 실행
[Claude Code Desktop 자동 설치 환경]
- setup/CLAUDE.md: 트리거 키워드 + 설치 패키지 설명
- setup/.claude/skills/guardia-install/SKILL.md: 6단계 설치 오케스트레이터
  Phase 0: 의도 파악 → Phase 1: OS 감지 → Phase 2: 사전 확인
  Phase 3: 설치 실행 → Phase 4: 라이선스 발급 → Phase 5: 검증 → Phase 6: 완료보고

[통합 자동 설치 스크립트]
- setup/install_auto.sh: Linux 통합 (OS 자동 감지 ubuntu/centos/rhel)
  - --license trial30|trial7|<key> 파라미터
  - 설치 완료 후 GUARDiA 자동 실행 + 브라우저 자동 열기
  - --test 검증 모드
- setup/install_auto.ps1: Windows 통합 (ASCII 전용, PS 5.1 호환)
  - 설치 후 NSSM 서비스 자동 시작 + 브라우저 자동 열기
  - -Test 파라미터로 검증 전용 실행

[라이선스 엔진 개선]
- core/license.py: generate_trial_key(days=None) 파라미터 추가
- TRIAL_DURATION_DAYS = TRIAL_DURATION_DAYS 환경변수로 조정 가능
- routers/license.py: TrialRequest.days 필드 + 30일 체험판 지원
  POST /api/license/trial {"days": 30} 로 30일 발급

사용자 경험:
  1. setup/ 폴더를 새 PC에 복사
  2. Claude Code Desktop 열고 해당 폴더 open
  3. "GUARDiA 시스템 1달 사용자로 설치해 줘" 입력
  4. 자동으로 OS 감지 → 설치 → 30일 라이선스 → 브라우저 열림

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-30 09:06:14 +09:00

175 lines
5.3 KiB
JavaScript

// src/test-utils.ts
import * as React from "react";
import * as DeprecatedReactTestUtils from "react-dom/test-utils";
var observers = /* @__PURE__ */ new Map();
var originalIntersectionObserver = typeof window !== "undefined" ? window.IntersectionObserver : void 0;
function testLibraryUtil() {
if (typeof vi !== "undefined") return vi;
if (typeof jest !== "undefined") return jest;
return void 0;
}
function isMocking() {
const util = testLibraryUtil();
if (util && typeof util.isMockFunction === "function") {
return util.isMockFunction(window.IntersectionObserver);
}
if (typeof window !== "undefined" && window.IntersectionObserver && "mockClear" in window.IntersectionObserver) {
return true;
}
return false;
}
if (typeof window !== "undefined" && typeof beforeEach !== "undefined" && typeof afterEach !== "undefined") {
beforeEach(() => {
const util = testLibraryUtil();
if (util) {
setupIntersectionMocking(util.fn);
}
observers.clear();
});
afterEach(resetIntersectionMocking);
}
function getActFn() {
if (!(typeof window !== "undefined" && // @ts-ignore
window.IS_REACT_ACT_ENVIRONMENT)) {
return void 0;
}
return typeof React.act === "function" ? React.act : DeprecatedReactTestUtils.act;
}
function warnOnMissingSetup() {
if (isMocking()) return;
console.error(
`React Intersection Observer was not configured to handle mocking.
Outside Jest and Vitest, you might need to manually configure it by calling setupIntersectionMocking() and resetIntersectionMocking() in your test setup file.
// test-setup.js
import { resetIntersectionMocking, setupIntersectionMocking } from 'react-intersection-observer/test-utils';
beforeEach(() => {
setupIntersectionMocking(vi.fn);
});
afterEach(() => {
resetIntersectionMocking();
});`
);
}
function setupIntersectionMocking(mockFn) {
window.IntersectionObserver = mockFn((cb, options = {}) => {
var _a, _b, _c;
const item = {
callback: cb,
elements: /* @__PURE__ */ new Set(),
created: Date.now()
};
const instance = {
thresholds: Array.isArray(options.threshold) ? options.threshold : [(_a = options.threshold) != null ? _a : 0],
root: (_b = options.root) != null ? _b : null,
rootMargin: (_c = options.rootMargin) != null ? _c : "",
observe: mockFn((element) => {
item.elements.add(element);
}),
unobserve: mockFn((element) => {
item.elements.delete(element);
}),
disconnect: mockFn(() => {
observers.delete(instance);
}),
takeRecords: mockFn()
};
observers.set(instance, item);
return instance;
});
}
function resetIntersectionMocking() {
if (window.IntersectionObserver && "mockClear" in window.IntersectionObserver && typeof window.IntersectionObserver.mockClear === "function") {
window.IntersectionObserver.mockClear();
}
observers.clear();
}
function destroyIntersectionMocking() {
resetIntersectionMocking();
window.IntersectionObserver = originalIntersectionObserver;
}
function triggerIntersection(elements, trigger, observer, item) {
var _a;
const entries = [];
const isIntersecting = typeof trigger === "number" ? observer.thresholds.some((threshold) => trigger >= threshold) : trigger;
let ratio;
if (typeof trigger === "number") {
const intersectedThresholds = observer.thresholds.filter(
(threshold) => trigger >= threshold
);
ratio = intersectedThresholds.length > 0 ? intersectedThresholds[intersectedThresholds.length - 1] : 0;
} else {
ratio = trigger ? 1 : 0;
}
for (const element of elements) {
entries.push({
boundingClientRect: element.getBoundingClientRect(),
intersectionRatio: ratio,
intersectionRect: isIntersecting ? element.getBoundingClientRect() : {
bottom: 0,
height: 0,
left: 0,
right: 0,
top: 0,
width: 0,
x: 0,
y: 0,
toJSON() {
}
},
isIntersecting,
rootBounds: observer.root instanceof Element ? (_a = observer.root) == null ? void 0 : _a.getBoundingClientRect() : null,
target: element,
time: Date.now() - item.created
});
}
const act3 = getActFn();
if (act3) act3(() => item.callback(entries, observer));
else item.callback(entries, observer);
}
function mockAllIsIntersecting(isIntersecting) {
warnOnMissingSetup();
for (const [observer, item] of observers) {
triggerIntersection(
Array.from(item.elements),
isIntersecting,
observer,
item
);
}
}
function mockIsIntersecting(element, isIntersecting) {
warnOnMissingSetup();
const observer = intersectionMockInstance(element);
if (!observer) {
throw new Error(
"No IntersectionObserver instance found for element. Is it still mounted in the DOM?"
);
}
const item = observers.get(observer);
if (item) {
triggerIntersection([element], isIntersecting, observer, item);
}
}
function intersectionMockInstance(element) {
warnOnMissingSetup();
for (const [observer, item] of observers) {
if (item.elements.has(element)) {
return observer;
}
}
throw new Error(
"Failed to find IntersectionObserver for element. Is it being observed?"
);
}
export {
destroyIntersectionMocking,
intersectionMockInstance,
mockAllIsIntersecting,
mockIsIntersecting,
resetIntersectionMocking,
setupIntersectionMocking
};