ccproxy.services.mocking.mock_handler¶
ccproxy.services.mocking.mock_handler
¶
Mock response handler for bypass mode.
MockResponseHandler
¶
MockResponseHandler(
mock_generator,
openai_adapter=None,
error_rate=0.05,
latency_range=(0.5, 2.0),
)
Handles bypass mode with realistic mock responses.
- Uses existing testing utilities
- Supports both Anthropic and OpenAI formats
Source code in ccproxy/services/mocking/mock_handler.py
extract_message_type
¶
Analyze request body to determine response type.
- Checks for 'tools' field → returns 'tool_use'
- Analyzes message length → returns 'long'|'medium'|'short'
- Handles JSON decode errors gracefully
Source code in ccproxy/services/mocking/mock_handler.py
should_simulate_error
¶
Randomly decide if error should be simulated.
- Uses configuration-based error rate
- Provides realistic error distribution
generate_standard_response
async
¶
Generate non-streaming mock response.
- Simulates realistic latency (configurable)
- Generates appropriate token counts
- Updates request context with metrics
- Returns (status_code, headers, body)
Source code in ccproxy/services/mocking/mock_handler.py
generate_streaming_response
async
¶
Generate SSE streaming mock response.
- Simulates realistic token generation rate
- Properly formatted SSE events
- Includes [DONE] marker
Source code in ccproxy/services/mocking/mock_handler.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | |