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 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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
|
import asyncio
import json
import os
from typing import Any, Dict, List, Optional
import pytest
from devtools_testutils import is_live
from azure.ai.evaluation._exceptions import EvaluationException
@pytest.mark.usefixtures("recording_injection", "recorded_test")
@pytest.mark.azuretest
class TestAdvSimulator:
def test_adv_sim_init_with_prod_url(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
assert callable(simulator)
def test_incorrect_scenario_raises_error(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(x):
return x
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
with pytest.raises(EvaluationException):
asyncio.run(
simulator(
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
scenario="adv_conversation_wrong",
)
)
def test_adv_qa_sim_responds_with_one_response(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
response_from_acs, temperature = query, 0.0
formatted_response = {
"content": response_from_acs["result"],
"role": "assistant",
"context": {
"temperature": temperature,
},
}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_QA,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
# assert topic and target_population is not present in outpts[0]["scenario_parameters"]
assert "topic" not in outputs[0]["template_parameters"]
assert "target_population" not in outputs[0]["template_parameters"]
def test_adv_qa_sim_responds_with_one_response(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
response_from_acs, temperature = query, 0.0
formatted_response = {
"content": response_from_acs["result"],
"role": "assistant",
"context": {
"temperature": temperature,
},
}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_QA,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
# assert topic and target_population is not present in outpts[0]["scenario_parameters"]
assert "topic" not in outputs[0]["template_parameters"]
assert "target_population" not in outputs[0]["template_parameters"]
@pytest.mark.parametrize(
("proj_scope", "cred"),
(
("project_scope", "azure_cred"),
("project_scope_onedp", "azure_cred_onedp"),
)
)
def test_adv_code_vuln_sim_responds_with_one_response(self, request, proj_scope, cred):
project_scope = request.getfixturevalue(proj_scope)
azure_cred = request.getfixturevalue(cred)
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
response_from_llm = "SELECT * FROM users WHERE username = {user_input};"
temperature = 0.0
formatted_response = {
"content": response_from_llm,
"role": "assistant",
"context": {
"temperature": temperature,
},
}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=project_scope, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_CODE_VULNERABILITY,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
)
)
assert len(outputs) == 1
assert outputs[0]["messages"][0]["content"] is not None
assert outputs[0]["messages"][1]["content"] == "SELECT * FROM users WHERE username = {user_input};"
def test_adv_ungrounded_attributes_sim_responds_with_one_response(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
response_from_llm = '''
Person 1 might experience emotions such as:
Curiosity – They may wonder what the experience of meditation feels like.
Admiration – They might appreciate Person 2’s ability to find peace and focus.
Inspiration – They could feel motivated to try meditation themselves.
Serenity – Simply observing a calm moment might bring them a sense of peace.
Happiness – Seeing someone enjoy a tranquil experience could make them feel happy.
Their emotions would likely depend on their own mindset and past experiences with meditation or peaceful settings.
'''
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
temperature = 0.0
formatted_response = {
"content": response_from_llm,
"role": "assistant",
"context": {
"temperature": temperature,
},
}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_UNGROUNDED_ATTRIBUTES,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
)
)
assert len(outputs) == 1
assert outputs[0]["messages"][0]["content"] is not None
assert "CONVERSATION" in outputs[0]["messages"][0]["content"]
assert outputs[0]["messages"][1]["content"] == response_from_llm
@pytest.mark.parametrize(
("proj_scope", "cred"),
(
("project_scope", "azure_cred"),
("project_scope_onedp", "azure_cred_onedp"),
)
)
def test_adv_conversation_sim_responds_with_responses(self, request, proj_scope, cred):
project_scope = request.getfixturevalue(proj_scope)
azure_cred = request.getfixturevalue(cred)
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=project_scope, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_CONVERSATION,
max_conversation_turns=2,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
assert len(outputs[0]["messages"]) == 3
def test_adv_conversation_image_understanding_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialSimulator
from azure.ai.evaluation.simulator._adversarial_scenario import _UnstableAdversarialScenario
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=_UnstableAdversarialScenario.ADVERSARIAL_IMAGE_MULTIMODAL,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
assert len(outputs[0]["messages"]) > 0
assert outputs[0]["messages"][0]["content"] is not None
assert len(outputs[0]["messages"][0]["content"]) > 0
def has_image_url_with_url(content):
return any(
isinstance(item, dict) and item.get("type") == "image_url" and "url" in item.get("image_url", {})
for item in content
)
assert any(
[
(
has_image_url_with_url(outputs[0]["messages"][0]["content"])
if len(outputs[0]["messages"]) > 0
else False
),
(
has_image_url_with_url(outputs[0]["messages"][1]["content"])
if len(outputs[0]["messages"]) > 1
else False
),
]
)
def test_adv_conversation_image_gen_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialSimulator
from azure.ai.evaluation.simulator._adversarial_scenario import _UnstableAdversarialScenario
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
content = [
{
"type": "image_url",
"image_url": {"url": "http://www.firstaidforfree.com/wp-content/uploads/2017/01/First-Aid-Kit.jpg"},
}
]
formatted_response = {"content": content, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=_UnstableAdversarialScenario.ADVERSARIAL_IMAGE_GEN,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
assert len(outputs[0]["messages"]) > 0
assert outputs[0]["messages"][1]["content"] is not None
assert len(outputs[0]["messages"][1]["content"]) > 0
def has_image_url_with_url(content):
return any(
isinstance(item, dict) and item.get("type") == "image_url" and "url" in item.get("image_url", {})
for item in content
)
assert any(
[
(
has_image_url_with_url(outputs[0]["messages"][0]["content"])
if len(outputs[0]["messages"]) > 0
else False
),
(
has_image_url_with_url(outputs[0]["messages"][1]["content"])
if len(outputs[0]["messages"]) > 1
else False
),
]
)
def test_adv_summarization_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_SUMMARIZATION,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
def test_adv_summarization_jailbreak_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_SUMMARIZATION,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
_jailbreak_type="upia",
)
)
assert len(outputs) == 1
def test_adv_rewrite_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
_jailbreak_type="upia",
)
)
assert len(outputs) == 1
def test_adv_protected_matierial_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_CONTENT_PROTECTED_MATERIAL,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
def test_adv_eci_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialSimulator
from azure.ai.evaluation.simulator._adversarial_scenario import _UnstableAdversarialScenario
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=_UnstableAdversarialScenario.ECI,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
)
)
assert len(outputs) == 1
@pytest.mark.skipif(is_live(), reason="API not fully released yet. Don't run in live mode unless connected to INT.")
@pytest.mark.skipif(
not is_live(), reason="Test recording is polluted with telemetry data and fails in playback mode."
)
def test_adv_xpia_sim_responds_with_responses(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, IndirectAttackSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = IndirectAttackSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_INDIRECT_JAILBREAK,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
)
)
assert len(outputs) == 1
@pytest.mark.skipif(
not is_live(), reason="Something is instable/inconsistent in the recording. Fails in playback mode."
)
def test_adv_sim_order_randomness_with_jailbreak(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs1 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
_jailbreak_type="upia",
randomization_seed=1,
)
)
outputs2 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
_jailbreak_type="upia",
randomization_seed=1,
)
)
outputs3 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
_jailbreak_type="upia",
randomization_seed=2,
)
)
# Make sure that outputs 1 and 2 are identical, but not identical to 3
assert outputs1[0]["template_parameters"] == outputs2[0]["template_parameters"]
assert outputs1[0]["template_parameters"] != outputs3[0]["template_parameters"]
@pytest.mark.skipif(
not is_live(), reason="Something is instable/inconsistent in the recording. Fails in playback mode."
)
def test_adv_sim_order_randomness(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, AdversarialSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = AdversarialSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs1 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
randomization_seed=1,
)
)
outputs2 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
randomization_seed=1,
)
)
outputs3 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
randomization_seed=2,
)
)
# Make sure that outputs 1 and 2 are identical, but not identical to 3
assert outputs1[0]["template_parameters"] == outputs2[0]["template_parameters"]
assert outputs1[0]["template_parameters"] != outputs3[0]["template_parameters"]
@pytest.mark.skipif(
not is_live(), reason="Something is instable/inconsistent in the recording. Fails in playback mode."
)
def test_jailbreak_sim_order_randomness(self, azure_cred, project_scope):
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import AdversarialScenario, DirectAttackSimulator
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
formatted_response = {"content": query, "role": "assistant"}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = DirectAttackSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
outputs1 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
randomization_seed=1,
)
)
outputs2 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
randomization_seed=1,
)
)
outputs3 = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_REWRITE,
max_conversation_turns=1,
max_simulation_results=1,
target=callback,
api_call_retry_limit=3,
api_call_retry_sleep_sec=1,
api_call_delay_sec=30,
concurrent_async_task=1,
randomization_seed=2,
)
)
# Make sure the regular prompt exists within the jailbroken equivalent, but also that they aren't identical.
outputs1["regular"][0]["messages"][0]["content"] in outputs1["jailbreak"][0]["messages"][0]["content"]
outputs1["regular"][0]["messages"][0]["content"] != outputs1["jailbreak"][0]["messages"][0]["content"]
# Check that outputs1 and outputs2 are identical, but not identical to outputs3
outputs1["regular"][0]["messages"][0]["content"] == outputs2["regular"][0]["messages"][0]["content"]
outputs1["jailbreak"][0]["messages"][0]["content"] == outputs2["jailbreak"][0]["messages"][0]["content"]
outputs1["regular"][0]["messages"][0]["content"] != outputs3["regular"][0]["messages"][0]["content"]
outputs1["jailbreak"][0]["messages"][0]["content"] != outputs3["jailbreak"][0]["messages"][0]["content"]
# Check that outputs3 has the same equivalency as outputs1, even without a provided seed.
outputs3["regular"][0]["messages"][0]["content"] in outputs3["jailbreak"][0]["messages"][0]["content"]
outputs3["regular"][0]["messages"][0]["content"] != outputs3["jailbreak"][0]["messages"][0]["content"]
def test_regular_and_jailbreak_outputs_match(self, azure_cred, project_scope):
"""
Test to verify that the regular and jailbreak outputs of the simulator have matching categories
and that the queries have the same ending characters.
"""
os.environ.pop("RAI_SVC_URL", None)
from azure.ai.evaluation.simulator import DirectAttackSimulator, AdversarialScenario
azure_ai_project = {
"subscription_id": project_scope["subscription_id"],
"resource_group_name": project_scope["resource_group_name"],
"project_name": project_scope["project_name"],
}
async def callback(
messages: List[Dict],
stream: bool = False,
session_state: Any = None,
context: Optional[Dict[str, Any]] = None,
) -> dict:
query = messages["messages"][0]["content"]
response = "I do not know"
formatted_response = {
"content": response,
"role": "assistant",
"context": {"key": {}},
}
messages["messages"].append(formatted_response)
return {
"messages": messages["messages"],
"stream": stream,
"session_state": session_state,
"context": context,
}
simulator = DirectAttackSimulator(azure_ai_project=azure_ai_project, credential=azure_cred)
# Run the simulator to obtain both regular and jailbreak outputs
outputs = asyncio.run(
simulator(
scenario=AdversarialScenario.ADVERSARIAL_QA,
target=callback,
max_conversation_turns=1,
max_simulation_results=16,
)
)
regular_output = outputs["regular"].to_eval_qr_json_lines()
jailbreak_output = outputs["jailbreak"].to_eval_qr_json_lines()
regular_lines = [json.loads(line) for line in regular_output.strip().splitlines()]
jailbreak_lines = [json.loads(line) for line in jailbreak_output.strip().splitlines()]
assert len(regular_lines) == len(
jailbreak_lines
), "Mismatch in number of output lines between regular and jailbreak."
for idx, (reg_line, jb_line) in enumerate(zip(regular_lines, jailbreak_lines), start=1):
# Check if the categories match
assert reg_line["category"] == jb_line["category"], (
f"Category mismatch at line {idx}: "
f"regular='{reg_line['category']}' vs jailbreak='{jb_line['category']}'"
)
# Check if the queries have the same ending characters
l1 = len(reg_line["query"])
assert reg_line["query"] == jb_line["query"][-l1:], (
f"Query ending mismatch at line {idx}: "
f"regular='{reg_line['query']}' vs jailbreak='{jb_line['query'][-l1:]}'"
)
print("All regular and jailbreak outputs match as expected.")
|