Files
wehub-resource-sync 0d3cb498a3
CI / Shell Format Check (push) Has been cancelled
CI / Check Ruby (3.4) (push) Has been cancelled
CI / CI Config (push) Has been cancelled
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Has been cancelled
CI / Build on Node ${{ matrix.node }} (push) Has been cancelled
CI / Style Check (push) Has been cancelled
CI / Generate Assets (push) Has been cancelled
CI / Check Python (3.14) (push) Has been cancelled
CI / Check Python (3.9) (push) Has been cancelled
CI / Build Docs (push) Has been cancelled
CI / Code Scan Action (push) Has been cancelled
CI / Site tests (push) Has been cancelled
CI / webui tests (push) Has been cancelled
CI / Run Integration Tests (push) Has been cancelled
CI / Run Smoke Tests (push) Has been cancelled
CI / Go Tests (push) Has been cancelled
CI / Share Test (push) Has been cancelled
CI / Redteam (Production API) (push) Has been cancelled
CI / Redteam (Staging API) (push) Has been cancelled
CI / GitHub Actions Lint (push) Has been cancelled
CI / Check Ruby (3.0) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
release-please / build (push) Has been cancelled
release-please / publish-npm (push) Has been cancelled
release-please / publish-npm-backfill (push) Has been cancelled
release-please / docker (push) Has been cancelled
release-please / publish-code-scan-action (push) Has been cancelled
release-please / attest-code-scan-action (push) Has been cancelled
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Has been cancelled
Test and Publish Multi-arch Docker Image / test (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-arm64 platform:linux/arm64 runner:ubuntu-24.04-arm]) (push) Has been cancelled
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Has been cancelled
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Has been cancelled
Validate Renovate Config / Validate Renovate Configuration (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00

175 lines
5.4 KiB
TypeScript

import { beforeEach, describe, expect, it, vi } from 'vitest';
import { fetchWithCache } from '../../../src/cache';
import {
createHyperbolicImageProvider,
formatHyperbolicImageOutput,
HyperbolicImageProvider,
} from '../../../src/providers/hyperbolic/image';
import { mockProcessEnv } from '../../util/utils';
vi.mock('../../../src/cache');
describe('HyperbolicImageProvider', () => {
beforeEach(() => {
vi.resetAllMocks();
});
describe('constructor', () => {
it('should initialize with default values', () => {
const provider = new HyperbolicImageProvider('test-model');
expect(provider.modelName).toBe('test-model');
expect(provider.config).toEqual({});
});
it('should initialize with config options', () => {
const config = { apiKey: 'test-key' };
const provider = new HyperbolicImageProvider('test-model', { config });
expect(provider.config).toEqual(config);
});
});
describe('getApiKey', () => {
it('should return config apiKey if set', () => {
const provider = new HyperbolicImageProvider('test', {
config: { apiKey: 'test-key' },
});
expect(provider.getApiKey()).toBe('test-key');
});
it('should return env apiKey if set', () => {
const provider = new HyperbolicImageProvider('test', {
env: { HYPERBOLIC_API_KEY: 'env-key' },
});
expect(provider.getApiKey()).toBe('env-key');
});
});
describe('formatHyperbolicImageOutput', () => {
it('should format b64_json output', () => {
const result = formatHyperbolicImageOutput('test-data', 'test prompt', 'b64_json');
expect(JSON.parse(result)).toEqual({
data: [{ b64_json: 'test-data' }],
});
});
it('should format JPEG data URL', () => {
const result = formatHyperbolicImageOutput('/9j/test', 'test prompt');
expect(result).toBe('data:image/jpeg;base64,/9j/test');
});
it('should format PNG data URL', () => {
const result = formatHyperbolicImageOutput('iVBORw0KGgo', 'test prompt');
expect(result).toBe('data:image/png;base64,iVBORw0KGgo');
});
it('should format WebP data URL', () => {
const result = formatHyperbolicImageOutput('UklGR', 'test prompt');
expect(result).toBe('data:image/webp;base64,UklGR');
});
});
describe('callApi', () => {
it('should throw error if no API key', async () => {
const restoreEnv = mockProcessEnv({ HYPERBOLIC_API_KEY: undefined });
try {
const provider = new HyperbolicImageProvider('test');
await expect(provider.callApi('test prompt')).rejects.toThrow(
'Hyperbolic API key is not set',
);
} finally {
restoreEnv();
}
});
it('should handle successful API call', async () => {
const mockResponse = {
data: {
images: [
{
image: 'test-image-data',
},
],
},
cached: false,
status: 200,
statusText: 'OK',
};
vi.mocked(fetchWithCache).mockResolvedValue(mockResponse);
const provider = new HyperbolicImageProvider('test', {
config: { apiKey: 'test-key' },
});
const result = await provider.callApi('test prompt');
expect(result).toEqual({
output: 'data:image/jpeg;base64,test-image-data',
cached: false,
cost: 0.01,
});
});
it('should handle API errors', async () => {
vi.mocked(fetchWithCache).mockResolvedValue({
data: { error: 'API error' },
cached: false,
status: 400,
statusText: 'Bad Request',
});
const provider = new HyperbolicImageProvider('test', {
config: { apiKey: 'test-key' },
});
const result = await provider.callApi('test prompt');
expect(result.error).toBe('API error: 400 Bad Request\n{"error":"API error"}');
});
it('should handle empty images array', async () => {
vi.mocked(fetchWithCache).mockResolvedValue({
data: { images: [] },
cached: false,
status: 200,
statusText: 'OK',
});
const provider = new HyperbolicImageProvider('test', {
config: { apiKey: 'test-key' },
});
const result = await provider.callApi('test prompt');
expect(result.error).toBe('No images returned from API');
});
it('should handle network errors', async () => {
vi.mocked(fetchWithCache).mockRejectedValue(new Error('Network error'));
const provider = new HyperbolicImageProvider('test', {
config: { apiKey: 'test-key' },
});
const result = await provider.callApi('test prompt');
expect(result.error).toBe('API call error: Error: Network error');
});
});
describe('createHyperbolicImageProvider', () => {
it('should create provider with default model', () => {
const provider = createHyperbolicImageProvider('hyperbolic:image');
expect(provider.id()).toBe('hyperbolic:image:SDXL1.0-base');
});
it('should create provider with specified model', () => {
const provider = createHyperbolicImageProvider('hyperbolic:image:test-model');
expect(provider.id()).toBe('hyperbolic:image:test-model');
});
it('should create provider with config', () => {
const config = { apiKey: 'test-key' };
const provider = createHyperbolicImageProvider('hyperbolic:image', { config });
expect((provider as HyperbolicImageProvider).config).toEqual(config);
});
});
});