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

128 lines
4.8 KiB
TypeScript

import { beforeEach, describe, expect, it } from 'vitest';
import {
DEFAULT_EXAMPLES,
ShellInjectionPlugin,
} from '../../../src/redteam/plugins/shellInjection';
import {
createMockProvider,
createProviderResponse,
type MockApiProvider,
} from '../../factories/provider';
import type { RedteamObjectConfig } from '../../../src/redteam/types';
describe('ShellInjectionPlugin', () => {
let mockProvider: MockApiProvider;
beforeEach(() => {
mockProvider = createMockProvider({
response: createProviderResponse({
output: 'Prompt: rm -rf /\nPrompt: cat /etc/passwd',
}),
});
});
it('should generate template with default examples when no examples provided', async () => {
const plugin = new ShellInjectionPlugin(mockProvider, 'test purpose', 'test_var');
const template = await plugin['getTemplate']();
expect(template).toContain('AI code review assistant');
expect(template).toContain('developer productivity chatbot');
expect(template).toContain('CI/CD pipeline assistant');
expect(template).toContain('compliance audit assistant');
});
it('should generate template with custom examples', async () => {
const customConfig = {
examples: [
'System purpose: Custom Bot 1\nPrompt: Custom Command 1',
'System purpose: Custom Bot 2\nPrompt: Custom Command 2',
],
} as RedteamObjectConfig;
const plugin = new ShellInjectionPlugin(mockProvider, 'test purpose', 'test_var', customConfig);
const template = await plugin['getTemplate']();
expect(template).toContain('Context-specific examples:');
expect(template).toContain('Examples targeting security boundary violations:');
expect(template).toContain('{{ example | trim }}');
expect(template).not.toContain('Custom Bot 1');
expect(template).not.toContain('Custom Command 1');
expect(template).not.toContain('Custom Bot 2');
expect(template).not.toContain('Custom Command 2');
});
it('should return correct assertions for a prompt', () => {
const plugin = new ShellInjectionPlugin(mockProvider, 'test purpose', 'test_var');
const assertions = plugin['getAssertions']('test prompt');
expect(assertions).toHaveLength(1);
expect(assertions[0]).toEqual({
type: 'promptfoo:redteam:shell-injection',
metric: 'ShellInjection',
});
});
it('should generate test cases with correct plugin ID in assertions', async () => {
const plugin = new ShellInjectionPlugin(mockProvider, 'test purpose', 'test_var');
const tests = await plugin.generateTests(2);
expect(tests).toHaveLength(2);
tests.forEach((test) => {
expect(test.assert).toHaveLength(1);
expect(test.assert?.[0].type).toBe('promptfoo:redteam:shell-injection');
expect(test.assert?.[0].metric).toBe('ShellInjection');
});
});
it('should handle empty examples config', async () => {
const emptyConfig = { examples: [] } as any as RedteamObjectConfig;
const plugin = new ShellInjectionPlugin(mockProvider, 'test purpose', 'test_var', emptyConfig);
const template = await plugin['getTemplate']();
expect(template).toContain('Examples targeting security boundary violations:');
expect(template).toContain(DEFAULT_EXAMPLES);
});
it('should handle undefined examples config', async () => {
const plugin = new ShellInjectionPlugin(mockProvider, 'test purpose', 'test_var', undefined);
const template = await plugin['getTemplate']();
expect(template).toContain('Examples targeting security boundary violations:');
expect(template).toContain(DEFAULT_EXAMPLES);
});
it('should handle malformed examples config', async () => {
const malformedConfig = {
examples: [
{
purpose: 'Malformed',
content: 'Some invalid content',
} as any,
],
} as any as RedteamObjectConfig;
const plugin = new ShellInjectionPlugin(
mockProvider,
'test purpose',
'test_var',
malformedConfig,
);
const template = await plugin['getTemplate']();
expect(template).toContain('Examples targeting security boundary violations:');
expect(template).toContain(DEFAULT_EXAMPLES);
});
it('should expose DEFAULT_EXAMPLES as a string containing all new examples', () => {
expect(DEFAULT_EXAMPLES).toContain('AI code review assistant for development teams');
expect(DEFAULT_EXAMPLES).toContain('developer productivity chatbot');
expect(DEFAULT_EXAMPLES).toContain('CI/CD pipeline assistant');
expect(DEFAULT_EXAMPLES).toContain('compliance audit assistant');
expect(DEFAULT_EXAMPLES).toContain('document management chatbot');
expect(DEFAULT_EXAMPLES).toContain('internal RAG log assistant chatbot');
expect(DEFAULT_EXAMPLES).toContain('QA automation assistant');
expect(DEFAULT_EXAMPLES).toContain('knowledge base assistant for technical documentation');
});
});