1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
- import { RbacGrader, RbacPlugin } from '../../../src/redteam/plugins/rbac';
- import type { ApiProvider, AtomicTestCase } from '../../../src/types';
- jest.mock('../../../src/fetch');
- describe('RbacPlugin', () => {
- let mockProvider: ApiProvider;
- beforeEach(() => {
- mockProvider = {
- id: () => 'test-provider',
- callApi: jest.fn(),
- };
- });
- it('should generate assertions with correct plugin ID', () => {
- const plugin = new RbacPlugin(mockProvider, 'test purpose', 'test_var');
- const assertions = (plugin as any).getAssertions('test prompt');
- expect(assertions).toHaveLength(1);
- expect(assertions[0]).toEqual({
- type: plugin.id,
- metric: 'RbacEnforcement',
- });
- });
- it('should generate test cases with correct format', async () => {
- const plugin = new RbacPlugin(mockProvider, 'test purpose', 'test_var');
- const mockResponse = {
- output: 'Prompt: Test prompt 1\nPrompt: Test prompt 2',
- };
- jest.mocked(mockProvider.callApi).mockResolvedValue(mockResponse);
- const testCases = await plugin.generateTests(2);
- expect(testCases).toEqual(
- expect.arrayContaining([
- expect.objectContaining({
- vars: {
- test_var: 'Test prompt 1',
- },
- assert: [
- {
- type: 'promptfoo:redteam:rbac',
- metric: 'RbacEnforcement',
- },
- ],
- }),
- expect.objectContaining({
- vars: {
- test_var: 'Test prompt 2',
- },
- assert: [
- {
- type: 'promptfoo:redteam:rbac',
- metric: 'RbacEnforcement',
- },
- ],
- }),
- ]),
- );
- });
- it('should handle empty response', async () => {
- const plugin = new RbacPlugin(mockProvider, 'test purpose', 'test_var');
- const mockResponse = {
- output: '',
- };
- jest.mocked(mockProvider.callApi).mockResolvedValue(mockResponse);
- const testCases = await plugin.generateTests(2);
- expect(testCases).toHaveLength(0);
- });
- });
- describe('RbacGrader', () => {
- const grader = new RbacGrader();
- it('should have correct plugin ID', () => {
- expect(grader.id).toBe('promptfoo:redteam:rbac');
- });
- it('should render rubric with variables', () => {
- const vars = {
- purpose: 'test purpose',
- prompt: 'test prompt',
- entities: ['entity1', 'entity2'],
- };
- const rendered = grader.renderRubric(vars);
- expect(rendered).toContain('test purpose');
- expect(rendered).toContain('test prompt');
- expect(rendered).toContain('entity1');
- expect(rendered).toContain('entity2');
- });
- it('should get result with default grader', async () => {
- const mockProvider: ApiProvider = {
- id: () => 'test',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify({
- reason: 'test reason',
- score: 1,
- pass: true,
- }),
- }),
- };
- const testCase: AtomicTestCase = {
- vars: {},
- assert: [],
- description: 'test case',
- metadata: {
- purpose: 'test purpose',
- },
- };
- const result = await grader.getResult(
- 'test prompt',
- 'test output',
- testCase,
- mockProvider,
- undefined,
- );
- expect(result).toEqual(
- expect.objectContaining({
- grade: expect.anything(),
- rubric: expect.anything(),
- }),
- );
- });
- it('should get suggestions for test case', () => {
- const testCase: AtomicTestCase = {
- vars: {},
- assert: [],
- description: 'test case',
- metadata: {
- purpose: 'test purpose',
- },
- };
- const suggestions = grader.getSuggestions({
- test: testCase,
- rawPrompt: 'test prompt',
- });
- expect(Array.isArray(suggestions)).toBe(true);
- });
- });
|