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 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Integration, feature_category: :integrations do
using RSpec::Parameterized::TableSyntax
subject(:integration) { build(:integration) }
let_it_be(:group) { create(:group) }
let_it_be(:project) { create(:project, group: group) }
describe "associations" do
it { is_expected.to belong_to(:project).inverse_of(:integrations) }
it { is_expected.to belong_to(:group).inverse_of(:integrations) }
it do
is_expected.to have_one(:issue_tracker_data)
.autosave(true)
.inverse_of(:integration)
.with_foreign_key(:integration_id)
.class_name('Integrations::IssueTrackerData')
end
it do
is_expected.to have_one(:jira_tracker_data)
.autosave(true)
.inverse_of(:integration)
.with_foreign_key(:integration_id)
.class_name('Integrations::JiraTrackerData')
end
end
describe 'default values' do
it { is_expected.to be_alert_events }
it { is_expected.to be_commit_events }
it { is_expected.to be_confidential_issues_events }
it { is_expected.to be_confidential_note_events }
it { is_expected.to be_issues_events }
it { is_expected.to be_job_events }
it { is_expected.to be_merge_requests_events }
it { is_expected.to be_note_events }
it { is_expected.to be_pipeline_events }
it { is_expected.to be_push_events }
it { is_expected.to be_tag_push_events }
it { is_expected.to be_wiki_page_events }
it { is_expected.not_to be_active }
it { is_expected.not_to be_incident_events }
it { expect(integration.category).to eq(:common) }
end
describe 'validations' do
it { is_expected.to validate_presence_of(:type) }
it { is_expected.to validate_exclusion_of(:type).in_array(described_class::BASE_CLASSES) }
where(:project_id, :group_id, :instance, :valid) do
1 | nil | false | true
nil | 1 | false | true
nil | nil | true | true
nil | nil | false | false
1 | 1 | false | false
1 | nil | false | true
1 | nil | true | false
nil | 1 | false | true
nil | 1 | true | false
end
with_them do
it 'validates the integration' do
expect(build(:integration, project_id: project_id, group_id: group_id, instance: instance).valid?).to eq(valid)
end
end
context 'with existing integrations' do
before_all do
create(:integration, :instance)
create(:integration, project: project)
create(:integration, group: group, project: nil)
end
it 'allows only one instance integration per type' do
expect(build(:integration, :instance)).not_to be_valid
end
it 'allows only one project integration per type' do
expect(build(:integration, project: project)).not_to be_valid
end
it 'allows only one group integration per type' do
expect(build(:integration, group: group, project: nil)).not_to be_valid
end
end
end
describe 'scopes' do
describe '.third_party_wikis' do
before do
create(:jira_integration, project: project)
create(:redmine_integration, project: project)
end
let_it_be(:confluence) { create(:confluence_integration, project: project) }
it 'returns the right group integration' do
expect(described_class.third_party_wikis).to contain_exactly(confluence)
end
end
describe '.with_default_settings' do
it 'returns the correct integrations' do
instance_integration = create(:integration, :instance)
inheriting_integration = create(:integration, inherit_from_id: instance_integration.id)
expect(described_class.with_default_settings).to contain_exactly(inheriting_integration)
end
end
describe '.with_custom_settings' do
it 'returns the correct integrations' do
instance_integration = create(:integration, :instance)
create(:integration, inherit_from_id: instance_integration.id)
expect(described_class.with_custom_settings).to contain_exactly(instance_integration)
end
end
describe '.by_type' do
let_it_be(:jira_project_integration) { create(:jira_integration, project: project) }
let_it_be(:jira_integration) { create(:jira_integration) }
let_it_be(:redmine_integration) { create(:redmine_integration) }
subject { described_class.by_type(type) }
context 'when type is "Integrations::JiraService"' do
let(:type) { 'Integrations::Jira' }
it { is_expected.to contain_exactly(jira_project_integration, jira_integration) }
end
context 'when type is "Integrations::Redmine"' do
let(:type) { 'Integrations::Redmine' }
it { is_expected.to contain_exactly(redmine_integration) }
end
end
describe '.for_group' do
let!(:jira_group_integration) { create(:jira_integration, project_id: nil, group_id: group.id) }
let!(:jira_project_integration) { create(:jira_integration, project: project) }
it 'returns the right group integration' do
expect(described_class.for_group(group)).to contain_exactly(jira_group_integration)
end
context 'when there is an instance specific integration' do
let!(:beyond_identity_integration) { create(:beyond_identity_integration, instance: false, group: group) }
it 'includes the instance specific integration' do
expect(described_class.for_group(group)).to include(jira_group_integration, beyond_identity_integration)
end
end
end
shared_examples 'hook scope' do |hook_type|
describe ".#{hook_type}_hooks" do
it "includes services where #{hook_type}_events is true" do
create(:integration, active: true, "#{hook_type}_events": true)
expect(described_class.send("#{hook_type}_hooks").count).to eq 1
end
it "excludes services where #{hook_type}_events is false" do
create(:integration, active: true, "#{hook_type}_events": false)
expect(described_class.send("#{hook_type}_hooks").count).to eq 0
end
end
end
include_examples 'hook scope', 'confidential_note'
include_examples 'hook scope', 'alert'
include_examples 'hook scope', 'archive_trace'
include_examples 'hook scope', 'incident'
end
describe '.title' do
it 'raises an error' do
expect { described_class.title }.to raise_error(NotImplementedError)
end
end
describe '.description' do
it 'raises an error' do
expect { described_class.description }.to raise_error(NotImplementedError)
end
end
describe '.attribution_notice' do
it { expect(described_class.attribution_notice).to be_nil }
end
describe '#operating?' do
it 'is false when the integration is not active' do
expect(build(:integration).operating?).to be(false)
end
it 'is false when the integration is not persisted' do
expect(build(:integration, active: true).operating?).to be(false)
end
it 'is true when the integration is active and persisted' do
expect(create(:integration, active: true).operating?).to be(true)
end
end
describe '#testable?' do
context 'when integration is project-level' do
subject { build(:integration, project: project) }
it { is_expected.to be_testable }
end
context 'when integration is not project-level' do
subject { build(:integration, project: nil) }
it { is_expected.not_to be_testable }
end
end
describe '#test' do
let(:integration) { build(:integration, project: project) }
let(:data) { 'test' }
it 'calls #execute' do
expect(integration).to receive(:execute).with(data)
integration.test(data)
end
it 'returns a result' do
result = 'foo'
allow(integration).to receive(:execute).with(data).and_return(result)
expect(integration.test(data)).to eq(
success: true,
result: result
)
end
end
describe '#project_level?' do
it 'is true when integration has a project' do
expect(build(:integration, project: project)).to be_project_level
end
it 'is false when integration has no project' do
expect(build(:integration, project: nil)).not_to be_project_level
end
end
describe '#group_level?' do
it 'is true when integration has a group' do
expect(build(:integration, group: group)).to be_group_level
end
it 'is false when integration has no group' do
expect(build(:integration, group: nil)).not_to be_group_level
end
end
describe '#instance_level?' do
it 'is true when integration has instance-level integration' do
expect(build(:integration, :instance)).to be_instance_level
end
it 'is false when integration does not have instance-level integration' do
expect(build(:integration, instance: false)).not_to be_instance_level
end
end
describe '#chat?' do
it 'is true when integration is chat integration' do
expect(build(:mattermost_integration).chat?).to be(true)
end
it 'is false when integration is not chat integration' do
expect(build(:integration).chat?).to be(false)
end
end
describe '#ci?' do
it 'is true when integration is a CI integration' do
expect(build(:jenkins_integration).ci?).to be(true)
end
it 'is false when integration is not a ci integration' do
expect(build(:integration).ci?).to be(false)
end
end
describe '#deactivate!' do
it 'sets active to false' do
integration = build(:integration, active: true)
integration.deactivate!
expect(integration.active).to eq(false)
end
end
describe '#activate!' do
it 'sets active to true' do
integration = build(:integration, active: false)
integration.activate!
expect(integration.active).to eq(true)
end
end
describe '#toggle!' do
context 'when active' do
it 'deactivates the integration' do
integration = build(:integration, active: true)
integration.toggle!
expect(integration).not_to be_active
end
end
context 'when not active' do
it 'activates the integration' do
integration = build(:integration, active: false)
integration.toggle!
expect(integration).to be_active
end
end
end
describe '.find_or_initialize_non_project_specific_integration' do
let_it_be(:jira_group_integration) { create(:jira_integration, project_id: nil, group_id: group.id) }
let_it_be(:jira_project_integration) { create(:jira_integration, project: project) }
it 'returns the right integration' do
expect(described_class.find_or_initialize_non_project_specific_integration('jira', group_id: group))
.to eq(jira_group_integration)
end
it 'does not create a new integration' do
expect { described_class.find_or_initialize_non_project_specific_integration('redmine', group_id: group) }
.not_to change { described_class.count }
end
end
describe '.find_or_initialize_all_non_project_specific' do
shared_examples 'integration instances' do
[false, true].each do |include_instance_specific|
context "with include_instance_specific value equal to #{include_instance_specific}" do
it 'returns the available integration instances' do
integrations = described_class.find_or_initialize_all_non_project_specific(
described_class.for_instance, include_instance_specific: include_instance_specific
).map(&:to_param)
expect(integrations).to match_array(
described_class.available_integration_names(
include_project_specific: false,
include_instance_specific: include_instance_specific)
)
end
it 'does not create integration instances' do
expect do
described_class.find_or_initialize_all_non_project_specific(
described_class.for_instance,
include_instance_specific: include_instance_specific
)
end.not_to change { described_class.count }
end
end
end
end
it_behaves_like 'integration instances'
context 'with all existing instances' do
def integration_hash(type)
Integration.new(instance: true, type: type).to_database_hash
end
before do
attrs = described_class.available_integration_types(include_project_specific: false).map do |integration_type|
integration_hash(integration_type)
end
described_class.insert_all(attrs)
end
it_behaves_like 'integration instances'
context 'with a previous existing integration (:mock_ci) and a new integration (:asana)' do
before do
described_class.insert(integration_hash(:mock_ci))
described_class.delete_by(**integration_hash(:asana))
end
it_behaves_like 'integration instances'
end
end
context 'with a few existing instances' do
before do
create(:jira_integration, :instance)
end
it_behaves_like 'integration instances'
end
end
describe '#inheritable?' do
it 'is true for an instance integration' do
expect(create(:integration, :instance)).to be_inheritable
end
it 'is true for a group integration' do
expect(create(:integration, :group)).to be_inheritable
end
it 'is false for a project integration' do
expect(create(:integration)).not_to be_inheritable
end
end
describe '.build_from_integration' do
context 'when integration is invalid' do
let(:invalid_integration) do
build(:prometheus_integration, :instance, active: true, properties: {})
.tap { |integration| integration.save!(validate: false) }
end
it 'sets integration to inactive' do
integration = described_class.build_from_integration(invalid_integration, project_id: project.id)
expect(integration).to be_valid
expect(integration.active).to be false
end
end
context 'when integration is an instance-level integration' do
let(:instance_integration) { create(:jira_integration, :instance) }
it 'sets inherit_from_id from integration' do
integration = described_class.build_from_integration(instance_integration, project_id: project.id)
expect(integration.inherit_from_id).to eq(instance_integration.id)
end
end
context 'when integration is a group-level integration' do
let(:group_integration) { create(:jira_integration, :group, group: group) }
it 'sets inherit_from_id from integration' do
integration = described_class.build_from_integration(group_integration, project_id: project.id)
expect(integration.inherit_from_id).to eq(group_integration.id)
end
end
describe 'build issue tracker from an integration' do
let(:url) { 'http://jira.example.com' }
let(:api_url) { 'http://api-jira.example.com' }
let(:username) { 'jira-username' }
let(:password) { 'jira-password' }
let(:data_params) do
{
url: url, api_url: api_url,
username: username, password: password
}
end
shared_examples 'integration creation from an integration' do
it 'creates a correct integration for a project integration' do
new_integration = described_class.build_from_integration(integration, project_id: project.id)
expect(new_integration).to be_active
expect(new_integration.url).to eq(url)
expect(new_integration.api_url).to eq(api_url)
expect(new_integration.username).to eq(username)
expect(new_integration.password).to eq(password)
expect(new_integration.instance).to be(false)
expect(new_integration.project).to eq(project)
expect(new_integration.group).to be_nil
end
it 'creates a correct integration for a group integration' do
new_integration = described_class.build_from_integration(integration, group_id: group.id)
expect(new_integration).to be_active
expect(new_integration.url).to eq(url)
expect(new_integration.api_url).to eq(api_url)
expect(new_integration.username).to eq(username)
expect(new_integration.password).to eq(password)
expect(new_integration.instance).to be(false)
expect(new_integration.project).to be_nil
expect(new_integration.group).to eq(group)
end
end
# this will be removed as part of https://gitlab.com/gitlab-org/gitlab/issues/29404
context 'when data is stored in properties' do
let(:properties) { data_params }
let!(:integration) do
create(:jira_integration, :without_properties_callback, project: project,
properties: properties.merge(additional: 'something'))
end
it_behaves_like 'integration creation from an integration'
end
context 'when data are stored in separated fields' do
let(:integration) do
create(:jira_integration, data_params.merge(properties: {}, project: project))
end
it_behaves_like 'integration creation from an integration'
end
context 'when data are stored in both properties and separated fields' do
let(:properties) { data_params }
let(:integration) do
create(:jira_integration, :without_properties_callback, project: project, active: true,
properties: properties).tap do |integration|
create(:jira_tracker_data, data_params.merge(integration: integration))
end
end
it_behaves_like 'integration creation from an integration'
end
end
end
describe '.default_integration' do
context 'with an instance-level integration' do
let_it_be(:instance_integration) { create(:jira_integration, :instance) }
it 'returns the instance integration' do
expect(described_class.default_integration('Integrations::Jira', project)).to eq(instance_integration)
end
it 'returns nil for nonexistent integration type' do
expect(described_class.default_integration('Integrations::Hipchat', project)).to be_nil
end
context 'with a group integration' do
let(:integration_name) { 'Integrations::Jira' }
let_it_be(:group_integration) { create(:jira_integration, group_id: group.id, project_id: nil) }
it 'returns the group integration for a project' do
expect(described_class.default_integration(integration_name, project)).to eq(group_integration)
end
it 'returns the instance integration for a group' do
expect(described_class.default_integration(integration_name, group)).to eq(instance_integration)
end
context 'with a subgroup' do
let_it_be(:subgroup) { create(:group, parent: group) }
let!(:project) { create(:project, group: subgroup) }
it 'returns the closest group integration for a project' do
expect(described_class.default_integration(integration_name, project)).to eq(group_integration)
end
it 'returns the closest group integration for a subgroup' do
expect(described_class.default_integration(integration_name, subgroup)).to eq(group_integration)
end
context 'when having an integration with custom settings' do
let!(:subgroup_integration) { create(:jira_integration, group_id: subgroup.id, project_id: nil) }
it 'returns the closest group integration for a project' do
expect(described_class.default_integration(integration_name, project)).to eq(subgroup_integration)
end
end
context 'when having an integration inheriting settings' do
let!(:subgroup_integration) do
create(:jira_integration, group_id: subgroup.id, project_id: nil, inherit_from_id: group_integration.id)
end
it 'returns the closest group integration which does not inherit from its parent for a project' do
expect(described_class.default_integration(integration_name, project)).to eq(group_integration)
end
end
end
end
end
end
describe '.create_from_default_integrations' do
let!(:instance_integration) { create(:prometheus_integration, :instance, api_url: 'https://prometheus.instance.com/') }
let!(:instance_level_instance_specific_integration) { create(:beyond_identity_integration) }
it 'creates integrations from default integrations' do
expect(described_class).to receive(:create_from_active_default_integrations)
.with(project, :project_id).and_call_original
expect(described_class).to receive(:create_from_default_instance_specific_integrations)
.with(project, :project_id).and_call_original
expect(described_class.create_from_default_integrations(project, :project_id)).to eq(2)
end
context 'when called with a group' do
it 'creates integrations from default integrations' do
expect(described_class).to receive(:create_from_active_default_integrations)
.with(group, :group_id).and_call_original
expect(described_class).to receive(:create_from_default_instance_specific_integrations)
.with(group, :group_id).and_call_original
expect(described_class.create_from_default_integrations(group, :group_id)).to eq(2)
end
end
end
describe '.create_from_active_default_integrations' do
context 'with an active instance-level integration' do
let!(:instance_integration) { create(:prometheus_integration, :instance, api_url: 'https://prometheus.instance.com/') }
it 'creates an integration from the instance-level integration' do
described_class.create_from_active_default_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.api_url).to eq(instance_integration.api_url)
expect(project.reload.integrations.first.inherit_from_id).to eq(instance_integration.id)
end
context 'when passing a group' do
it 'creates an integration from the instance-level integration' do
described_class.create_from_active_default_integrations(group, :group_id)
expect(group.reload.integrations.size).to eq(1)
expect(group.reload.integrations.first.api_url).to eq(instance_integration.api_url)
expect(group.reload.integrations.first.inherit_from_id).to eq(instance_integration.id)
end
end
context 'with an active group-level integration' do
let!(:group_integration) { create(:prometheus_integration, :group, group: group, api_url: 'https://prometheus.group.com/') }
it 'creates an integration from the group-level integration' do
described_class.create_from_active_default_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.api_url).to eq(group_integration.api_url)
expect(project.reload.integrations.first.inherit_from_id).to eq(group_integration.id)
end
context 'when there are multiple inheritable integrations, and a duplicate' do
let!(:jenkins_integration) { create(:jenkins_integration, :group, group: group) }
let!(:datadog_integration) { create(:datadog_integration, :instance) }
let!(:duplicate_jenkins_integration) { create(:jenkins_integration, project: project) }
it 'returns the number of successfully created integrations' do
expect(described_class.create_from_active_default_integrations(project, :project_id)).to eq 2
expect(project.reload.integrations.size).to eq(3)
end
end
context 'when passing a group' do
let!(:subgroup) { create(:group, parent: group) }
it 'creates an integration from the group-level integration' do
described_class.create_from_active_default_integrations(subgroup, :group_id)
expect(subgroup.reload.integrations.size).to eq(1)
expect(subgroup.reload.integrations.first.api_url).to eq(group_integration.api_url)
expect(subgroup.reload.integrations.first.inherit_from_id).to eq(group_integration.id)
end
end
context 'with an active subgroup' do
let_it_be(:subgroup) { create(:group, parent: group) }
let_it_be(:project) { create(:project, group: subgroup) }
let!(:subgroup_integration) { create(:prometheus_integration, :group, group: subgroup, api_url: 'https://prometheus.subgroup.com/') }
it 'creates an integration from the subgroup-level integration' do
described_class.create_from_active_default_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.api_url).to eq(subgroup_integration.api_url)
expect(project.reload.integrations.first.inherit_from_id).to eq(subgroup_integration.id)
end
context 'when passing a group' do
let!(:sub_subgroup) { create(:group, parent: subgroup) }
context 'with traversal queries' do
shared_examples 'correct ancestor order' do
it 'creates an integration from the subgroup-level integration' do
described_class.create_from_active_default_integrations(sub_subgroup, :group_id)
sub_subgroup.reload
expect(sub_subgroup.integrations.size).to eq(1)
expect(sub_subgroup.integrations.first.api_url).to eq(subgroup_integration.api_url)
expect(sub_subgroup.integrations.first.inherit_from_id).to eq(subgroup_integration.id)
end
context 'when having an integration inheriting settings' do
let!(:subgroup_integration) do
create(:prometheus_integration, :group, group: subgroup, inherit_from_id: group_integration.id,
api_url: 'https://prometheus.subgroup.com/')
end
it 'creates an integration from the group-level integration' do
described_class.create_from_active_default_integrations(sub_subgroup, :group_id)
sub_subgroup.reload
expect(sub_subgroup.integrations.size).to eq(1)
expect(sub_subgroup.integrations.first.api_url).to eq(group_integration.api_url)
expect(sub_subgroup.integrations.first.inherit_from_id).to eq(group_integration.id)
end
end
end
include_examples 'correct ancestor order'
end
end
end
end
context 'when the integration is instance specific' do
let!(:instance_integration) { create(:beyond_identity_integration) }
it 'does not create an integration from the instance level instance specific integration' do
described_class.create_from_active_default_integrations(project, :project_id)
expect(project.reload.integrations).to be_blank
end
end
end
end
describe '.create_from_default_instance_specific_integrations' do
context 'with an active instance-level integration' do
let!(:instance_integration) { create(:beyond_identity_integration) }
it 'creates an integration from the instance-level integration' do
described_class.create_from_default_instance_specific_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.inherit_from_id).to eq(instance_integration.id)
end
context 'when passing a group' do
it 'creates an integration from the instance-level integration' do
described_class.create_from_default_instance_specific_integrations(group, :group_id)
expect(group.reload.integrations.size).to eq(1)
expect(group.reload.integrations.first.inherit_from_id).to eq(instance_integration.id)
end
end
context 'with active group-level integration' do
let!(:group_integration) { create(:beyond_identity_integration, group: group, instance: false) }
it 'creates an integration from the group-level integration' do
described_class.create_from_default_instance_specific_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.inherit_from_id).to eq(group_integration.id)
end
context 'when group level integration is not active' do
let!(:group_integration) do
create(:beyond_identity_integration, group: group, instance: false, active: false)
end
it 'creates an integration from the group-level integration' do
described_class.create_from_default_instance_specific_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.inherit_from_id).to eq(group_integration.id)
expect(project.reload.integrations.first).not_to be_active
end
end
context 'when passing a group' do
let!(:subgroup) { create(:group, parent: group) }
it 'creates an integration from the group-level integration' do
described_class.create_from_default_instance_specific_integrations(subgroup, :group_id)
expect(subgroup.reload.integrations.size).to eq(1)
expect(subgroup.reload.integrations.first.inherit_from_id).to eq(group_integration.id)
end
end
context 'with an active subgroup' do
let_it_be(:subgroup) { create(:group, parent: group) }
let_it_be(:project) { create(:project, group: subgroup) }
let!(:subgroup_integration) { create(:beyond_identity_integration, group: subgroup, instance: false) }
it 'creates an integration from the subgroup-level integration' do
described_class.create_from_default_instance_specific_integrations(project, :project_id)
expect(project.reload.integrations.size).to eq(1)
expect(project.reload.integrations.first.inherit_from_id).to eq(subgroup_integration.id)
end
context 'when passing a group' do
let!(:sub_subgroup) { create(:group, parent: subgroup) }
context 'with traversal queries' do
shared_examples 'correct ancestor order' do
it 'creates an integration from the subgroup-level integration' do
described_class.create_from_default_instance_specific_integrations(sub_subgroup, :group_id)
sub_subgroup.reload
expect(sub_subgroup.integrations.size).to eq(1)
expect(sub_subgroup.integrations.first.inherit_from_id).to eq(subgroup_integration.id)
end
context 'when having an integration inheriting settings' do
let!(:subgroup_integration) do
create(:beyond_identity_integration, group: subgroup, inherit_from_id: group_integration.id,
instance: false)
end
it 'creates an integration from the group-level integration' do
described_class.create_from_default_instance_specific_integrations(sub_subgroup, :group_id)
sub_subgroup.reload
expect(sub_subgroup.integrations.size).to eq(1)
expect(sub_subgroup.integrations.first.inherit_from_id).to eq(group_integration.id)
end
end
end
include_examples 'correct ancestor order'
end
end
end
end
context 'when the integration is not instance specific' do
let!(:instance_integration) { create(:prometheus_integration, :instance) }
it 'does not create an integration from the instance level instance specific integration' do
described_class.create_from_default_instance_specific_integrations(project, :project_id)
expect(project.reload.integrations).to be_blank
end
end
end
end
describe '.inherited_descendants_from_self_or_ancestors_from' do
let_it_be(:subgroup_1) { create(:group, parent: group) }
let_it_be(:subgroup_2) { create(:group, parent: group) }
let_it_be(:project_1) { create(:project, group: subgroup_1) }
let_it_be(:project_2) { create(:project, group: subgroup_2) }
let_it_be(:group_integration) { create(:prometheus_integration, :group, group: group) }
let_it_be(:subgroup_integration_1) do
create(:prometheus_integration, :group, group: subgroup_1, inherit_from_id: group_integration.id)
end
let_it_be(:subgroup_integration_2) { create(:prometheus_integration, :group, group: subgroup_2) }
let_it_be(:project_integration_1) do
create(:prometheus_integration, project: project_1, inherit_from_id: group_integration.id)
end
let_it_be(:project_integration_2) do
create(:prometheus_integration, project: project_2, inherit_from_id: subgroup_integration_2.id)
end
it 'returns the groups and projects inheriting from integration ancestors', :aggregate_failures do
expect(described_class.inherited_descendants_from_self_or_ancestors_from(group_integration))
.to eq([subgroup_integration_1, project_integration_1])
expect(described_class.inherited_descendants_from_self_or_ancestors_from(subgroup_integration_2))
.to eq([project_integration_2])
end
end
describe '.descendants_from_self_or_ancestors_from' do
let_it_be(:project) { create(:project, :in_subgroup) }
let(:group) { project.root_namespace }
let(:subgroup) { project.group }
let!(:group_integration) { create(:prometheus_integration, :group, group: group) }
let!(:subgroup_integration) do
create(:prometheus_integration, :group, group: subgroup, inherit_from_id: group_integration.id)
end
let!(:project_custom_settings_integration) do
create(:prometheus_integration, project: project, inherit_from_id: nil)
end
it 'returns integrations for descendants of the group of the integration' do
expect(described_class.descendants_from_self_or_ancestors_from(group_integration))
.to contain_exactly(subgroup_integration, project_custom_settings_integration)
end
end
describe '.integration_name_to_type' do
it 'handles a simple case' do
expect(described_class.integration_name_to_type(:asana)).to eq 'Integrations::Asana'
end
it 'raises an error if the name is unknown' do
expect { described_class.integration_name_to_type('foo') }
.to raise_exception(described_class::UnknownType, /foo/)
end
it 'does not raise an error if the name is a disabled integration' do
allow(described_class).to receive(:disabled_integration_names).and_return(['asana'])
expect { described_class.integration_name_to_type('asana') }.not_to raise_exception
end
it 'handles all available_integration_names' do
types = described_class.available_integration_names.map do |integration_name|
described_class.integration_name_to_type(integration_name)
end
expect(types).to all(start_with('Integrations::'))
end
end
describe '.integration_name_to_model' do
it 'raises an error if integration name is invalid' do
expect do
described_class.integration_name_to_model('foo')
end.to raise_exception(described_class::UnknownType, /foo/)
end
end
describe "{property}_changed?" do
let(:integration) do
Integrations::Bamboo.create!(
project: project,
properties: {
bamboo_url: 'http://gitlab.com',
username: 'mic',
password: "password"
}
)
end
it "returns false when the property has not been assigned a new value" do
integration.username = "key_changed"
expect(integration.bamboo_url_changed?).to be_falsy
end
it "returns true when the property has been assigned a different value" do
integration.bamboo_url = "http://example.com"
expect(integration.bamboo_url_changed?).to be_truthy
end
it "returns true when the property has been assigned a different value twice" do
integration.bamboo_url = "http://example.com"
integration.bamboo_url = "http://example.com"
expect(integration.bamboo_url_changed?).to be_truthy
end
it "returns false when the property has been re-assigned the same value" do
integration.bamboo_url = 'http://gitlab.com'
expect(integration.bamboo_url_changed?).to be_falsy
end
it "returns false when the property has been assigned a new value then saved" do
integration.bamboo_url = 'http://example.com'
integration.save!
expect(integration.bamboo_url_changed?).to be_falsy
end
end
describe '#properties=' do
let(:integration_type) do
Class.new(described_class) do
field :foo
field :bar
end
end
it 'supports indifferent access' do
integration = integration_type.new
integration.properties = { foo: 1, 'bar' => 2 }
expect(integration).to have_attributes(foo: 1, bar: 2)
end
end
describe '#properties' do
it 'is not mutable' do
integration = described_class.new
integration.properties = { foo: 1, bar: 2 }
expect { integration.properties[:foo] = 3 }.to raise_error(FrozenError)
end
end
describe "{property}_touched?" do
let(:integration) do
Integrations::Bamboo.create!(
project: project,
properties: {
bamboo_url: 'http://gitlab.com',
username: 'mic',
password: "password"
}
)
end
it "returns false when the property has not been assigned a new value" do
integration.username = "key_changed"
expect(integration.bamboo_url_touched?).to be_falsy
end
it "returns true when the property has been assigned a different value" do
integration.bamboo_url = "http://example.com"
expect(integration.bamboo_url_touched?).to be_truthy
end
it "returns true when the property has been assigned a different value twice" do
integration.bamboo_url = "http://example.com"
integration.bamboo_url = "http://example.com"
expect(integration.bamboo_url_touched?).to be_truthy
end
it "returns true when the property has been re-assigned the same value" do
integration.bamboo_url = 'http://gitlab.com'
expect(integration.bamboo_url_touched?).to be_truthy
end
it "returns false when the property has been assigned a new value then saved" do
integration.bamboo_url = 'http://example.com'
integration.save!
expect(integration.bamboo_url_changed?).to be_falsy
end
end
describe "{property}_was" do
let(:integration) do
Integrations::Bamboo.create!(
project: project,
properties: {
bamboo_url: 'http://gitlab.com',
username: 'mic',
password: "password"
}
)
end
it "returns nil when the property has not been assigned a new value" do
integration.username = "key_changed"
expect(integration.bamboo_url_was).to be_nil
end
it "returns the previous value when the property has been assigned a different value" do
integration.bamboo_url = "http://example.com"
expect(integration.bamboo_url_was).to eq('http://gitlab.com')
end
it "returns initial value when the property has been re-assigned the same value" do
integration.bamboo_url = 'http://gitlab.com'
expect(integration.bamboo_url_was).to eq('http://gitlab.com')
end
it "returns initial value when the property has been assigned multiple values" do
integration.bamboo_url = "http://example.com"
integration.bamboo_url = "http://example.org"
expect(integration.bamboo_url_was).to eq('http://gitlab.com')
end
it "returns nil when the property has been assigned a new value then saved" do
integration.bamboo_url = 'http://example.com'
integration.save!
expect(integration.bamboo_url_was).to be_nil
end
end
describe 'initialize integration with no properties' do
let(:integration) do
Integrations::Bugzilla.create!(
project: project,
project_url: 'http://gitlab.example.com'
)
end
it 'does not raise error' do
expect { integration }.not_to raise_error
end
it 'sets data correctly' do
expect(integration.data_fields.project_url).to eq('http://gitlab.example.com')
end
end
describe 'field definitions' do
shared_examples '#fields' do
it 'does not return the same array' do
integration = fake_integration.new
expect(integration.fields).not_to be(integration.fields)
end
end
shared_examples '#api_field_names' do
it 'filters out secret fields and conditional fields' do
safe_fields = %w[some_safe_field safe_field url trojan_gift api_only_field enabled_field]
expect(fake_integration.new).to have_attributes(
api_field_names: match_array(safe_fields)
)
end
end
shared_examples '#form_fields' do
it 'filters out API only fields' do
expect(fake_integration.new.form_fields.pluck(:name)).not_to include('api_only_field')
end
it 'filters conditionals fields' do
expect(fake_integration.new.form_fields.pluck(:name)).to include('enabled_field')
expect(fake_integration.new.form_fields.pluck(:name)).not_to include('disabled_field', 'disabled_field_2')
end
end
context 'when the class overrides #fields' do
let(:fake_integration) do
Class.new(Integration) do
def fields
[
{ name: 'token', type: :password },
{ name: 'api_token', type: :password },
{ name: 'token_api', type: :password },
{ name: 'safe_token', type: :password },
{ name: 'key', type: :password },
{ name: 'api_key', type: :password },
{ name: 'password', type: :password },
{ name: 'password_field', type: :password },
{ name: 'webhook' },
{ name: 'some_safe_field' },
{ name: 'safe_field' },
{ name: 'url' },
{ name: 'trojan_horse', type: :password },
{ name: 'trojan_gift', type: :text },
{ name: 'api_only_field', api_only: true },
{ name: 'enabled_field', if: true },
{ name: 'disabled_field', if: false },
{ name: 'disabled_field_2', if: nil }
].shuffle
end
end
end
it_behaves_like '#fields'
it_behaves_like '#api_field_names'
it_behaves_like '#form_fields'
end
context 'when the class uses the field DSL' do
let(:fake_integration) do
Class.new(described_class) do
field :token, type: :password
field :api_token, type: :password
field :token_api, type: :password
field :safe_token, type: :password
field :key, type: :password
field :api_key, type: :password
field :password, type: :password
field :password_field, type: :password
field :webhook
field :some_safe_field
field :safe_field
field :url
field :trojan_horse, type: :password
field :trojan_gift, type: :text
field :api_only_field, api_only: true
field :enabled_field, if: -> { true }
field :disabled_field, if: -> { false }
field :disabled_field_2, if: -> {}
end
end
it_behaves_like '#fields'
it_behaves_like '#api_field_names'
it_behaves_like '#form_fields'
end
end
context 'with logging' do
let(:integration) { build(:integration, project: project) }
let(:test_message) { "test message" }
let(:arguments) do
{
integration_class: integration.class.name,
integration_id: integration.id,
project_path: project.full_path,
project_id: project.id,
message: test_message,
additional_argument: 'some argument'
}
end
it 'logs info messages using json logger' do
expect(Gitlab::IntegrationsLogger).to receive(:info).with(arguments)
integration.log_info(test_message, additional_argument: 'some argument')
end
it 'logs error messages using json logger' do
expect(Gitlab::IntegrationsLogger).to receive(:error).with(arguments)
integration.log_error(test_message, additional_argument: 'some argument')
end
context 'when project is nil' do
let(:project) { nil }
let(:arguments) do
{
integration_class: integration.class.name,
integration_id: integration.id,
project_path: nil,
project_id: nil,
message: test_message,
additional_argument: 'some argument'
}
end
it 'logs info messages using json logger' do
expect(Gitlab::IntegrationsLogger).to receive(:info).with(arguments)
integration.log_info(test_message, additional_argument: 'some argument')
end
end
context 'with logging exceptions' do
let(:error) { RuntimeError.new('exception message') }
let(:arguments) do
super().merge(
'exception.class' => 'RuntimeError',
'exception.message' => 'exception message'
)
end
it 'logs exceptions using json logger' do
expect(Gitlab::IntegrationsLogger).to receive(:error).with(arguments.merge(message: 'exception message'))
integration.log_exception(error, additional_argument: 'some argument')
end
it 'logs exceptions using json logger with a custom message' do
expect(Gitlab::IntegrationsLogger).to receive(:error).with(arguments.merge(message: 'custom message'))
integration.log_exception(error, message: 'custom message', additional_argument: 'some argument')
end
end
end
describe '.available_integration_names' do
subject { described_class.available_integration_names }
it { is_expected.not_to include('jira_cloud_app') }
context 'when instance is configured for Jira Cloud app' do
before do
stub_application_setting(jira_connect_application_key: 'mock_app_oauth_key')
end
it { is_expected.to include('jira_cloud_app') }
end
end
describe '.available_integration_names (stubbed)' do
subject { described_class.available_integration_names }
before do
allow(described_class).to receive_messages(
integration_names: %w[foo disabled],
project_specific_integration_names: ['project'],
project_and_group_specific_integration_names: ['project-and-group'],
dev_integration_names: ['dev'],
instance_specific_integration_names: ['instance'],
disabled_integration_names: ['disabled']
)
end
it { is_expected.to include('foo', 'project', 'project-and-group', 'instance', 'dev') }
it { is_expected.not_to include('disabled') }
context 'when `include_project_specific` is false' do
subject { described_class.available_integration_names(include_project_specific: false) }
it { is_expected.to include('foo', 'dev', 'project-and-group', 'instance') }
it { is_expected.not_to include('project', 'disabled') }
end
context 'when `include_dev` is false' do
subject { described_class.available_integration_names(include_dev: false) }
it { is_expected.to include('foo', 'project', 'project-and-group', 'instance') }
it { is_expected.not_to include('dev', 'disabled') }
end
context 'when `include_instance_specific` is false' do
subject { described_class.available_integration_names(include_instance_specific: false) }
it { is_expected.to include('foo', 'dev', 'project', 'project-and-group') }
it { is_expected.not_to include('instance', 'disabled') }
end
context 'when `include_project_specific` and `include_group_specific` are false' do
subject do
described_class.available_integration_names(
include_project_specific: false,
include_group_specific: false
)
end
it { is_expected.to include('foo', 'dev', 'instance') }
it { is_expected.not_to include('project', 'project-and-group', 'disabled') }
end
context 'when `include_disabled` is true' do
subject { described_class.available_integration_names(include_disabled: true) }
it { is_expected.to include('disabled') }
end
end
describe '.integration_names' do
subject { described_class.integration_names }
it { is_expected.to include(*described_class::INTEGRATION_NAMES - ['jira_cloud_app']) }
it { is_expected.to include('gitlab_slack_application') }
context 'when Rails.env is not test' do
before do
allow(Rails.env).to receive(:test?).and_return(false)
end
it { is_expected.not_to include('gitlab_slack_application') }
context 'when `slack_app_enabled` setting is enabled' do
before do
stub_application_setting(slack_app_enabled: true)
end
it { is_expected.to include('gitlab_slack_application') }
context 'when feature flag is disabled' do
before do
stub_feature_flags(gitlab_for_slack_app_instance_and_group_level: false)
end
it { is_expected.not_to include('gitlab_slack_application') }
end
end
end
end
describe '.project_specific_integration_names' do
subject { described_class.project_specific_integration_names }
it { is_expected.to include(*described_class::PROJECT_LEVEL_ONLY_INTEGRATION_NAMES) }
it { is_expected.not_to include('gitlab_slack_application') }
context 'when feature flag is disabled' do
before do
stub_feature_flags(gitlab_for_slack_app_instance_and_group_level: false)
end
it { is_expected.to include('gitlab_slack_application') }
context 'when Rails.env is not test' do
before do
allow(Rails.env).to receive(:test?).and_return(false)
end
it { is_expected.not_to include('gitlab_slack_application') }
context 'when `slack_app_enabled` setting is enabled' do
before do
stub_application_setting(slack_app_enabled: true)
end
it { is_expected.to include('gitlab_slack_application') }
end
end
end
context 'when Rails.env is not test and `slack_app_enabled` setting is enabled' do
before do
allow(Rails.env).to receive(:test?).and_return(false)
stub_application_setting(slack_app_enabled: true)
end
it { is_expected.not_to include('gitlab_slack_application') }
end
end
describe '#secret_fields' do
it 'returns all fields with type `password`' do
allow(integration).to receive(:fields).and_return(
[
Integrations::Field.new(name: 'password', integration_class: integration.class, type: :password),
Integrations::Field.new(name: 'secret', integration_class: integration.class, type: :password),
Integrations::Field.new(name: 'public', integration_class: integration.class, type: :text)
])
expect(integration.secret_fields).to match_array(%w[password secret])
end
it 'returns an empty array if no secret fields exist' do
expect(integration.secret_fields).to eq([])
end
end
describe '#to_database_hash' do
let(:properties) { { foo: 1, bar: true } }
let(:db_props) { properties.stringify_keys }
let(:record) { create(:integration, :instance, properties: properties) }
it 'does not include the properties key' do
hash = record.to_database_hash
expect(hash).not_to have_key('properties')
end
it 'does not include certain attributes' do
hash = record.to_database_hash
expect(hash.keys).not_to include('id', 'instance', 'project_id', 'group_id', 'created_at', 'updated_at')
end
it 'saves correctly using insert_all' do
hash = record.to_database_hash
hash[:project_id] = project.id
expect do
described_class.insert_all([hash])
end.to change { described_class.count }.by(1)
expect(described_class.last).to have_attributes(properties: db_props)
end
it 'decrypts encrypted properties correctly' do
hash = record.to_database_hash
expect(hash).to include('encrypted_properties' => be_present, 'encrypted_properties_iv' => be_present)
expect(hash['encrypted_properties']).not_to eq(record.encrypted_properties)
expect(hash['encrypted_properties_iv']).not_to eq(record.encrypted_properties_iv)
decrypted = described_class.attr_decrypt(
:properties,
hash['encrypted_properties'],
{ iv: hash['encrypted_properties_iv'] }
)
expect(decrypted).to eq db_props
end
context 'when the properties are empty' do
let(:properties) { {} }
it 'is part of the to_database_hash' do
hash = record.to_database_hash
expect(hash).to include('encrypted_properties' => be_nil, 'encrypted_properties_iv' => be_nil)
end
it 'saves correctly using insert_all' do
hash = record.to_database_hash
hash[:project_id] = project
expect do
described_class.insert_all([hash])
end.to change { described_class.count }.by(1)
expect(described_class.last).not_to eq record
expect(described_class.last).to have_attributes(properties: db_props)
end
end
end
describe 'field DSL' do
let(:integration_type) do
Class.new(described_class) do
field :foo
field :foo_p, storage: :properties
field :foo_dt, storage: :data_fields
field :bar, type: :password
field :password, is_secret: true
field :webhook
field :with_help, help: -> { 'help' }
field :select, type: :select
field :boolean, type: :checkbox
end
end
let(:integration) { integration_type.new }
let(:data_fields) { Struct.new(:foo_dt).new }
before do
allow(integration).to receive(:data_fields).and_return(data_fields)
end
it 'checks the value of storage' do
expect do
Class.new(described_class) { field(:foo, storage: 'bar') }
end.to raise_error(ArgumentError, /Unknown field storage/)
end
it 'provides prop_accessors' do
integration.foo = 1
expect(integration.foo).to eq 1
expect(integration.properties['foo']).to eq 1
expect(integration).to be_foo_changed
integration.foo_p = 2
expect(integration.foo_p).to eq 2
expect(integration.properties['foo_p']).to eq 2
expect(integration).to be_foo_p_changed
end
it 'provides boolean accessors for checkbox fields' do
expect(integration).to respond_to(:boolean)
expect(integration).to respond_to(:boolean?)
expect(integration).not_to respond_to(:foo?)
expect(integration).not_to respond_to(:bar?)
expect(integration).not_to respond_to(:password?)
expect(integration).not_to respond_to(:select?)
end
it 'provides data fields' do
integration.foo_dt = 3
expect(integration.foo_dt).to eq 3
expect(data_fields.foo_dt).to eq 3
expect(integration).to be_foo_dt_changed
end
it 'registers fields in the fields list' do
expect(integration.fields.pluck(:name)).to match_array %w[
foo foo_p foo_dt bar password with_help select boolean webhook
]
expect(integration.api_field_names).to match_array %w[
foo foo_p foo_dt with_help select boolean
]
end
specify 'fields have expected attributes' do
expect(integration.fields).to include(
have_attributes(name: 'foo', type: :text),
have_attributes(name: 'foo_p', type: :text),
have_attributes(name: 'foo_dt', type: :text),
have_attributes(name: 'bar', type: :password),
have_attributes(name: 'password', type: :password),
have_attributes(name: 'webhook', type: :text),
have_attributes(name: 'with_help', help: 'help'),
have_attributes(name: 'select', type: :select),
have_attributes(name: 'boolean', type: :checkbox)
)
end
end
describe 'Checkbox field booleans' do
let(:klass) do
Class.new(Integration) do
field :test_value, type: :checkbox
end
end
let(:integration) { klass.new(test_value: input) }
where(:input, :method_result, :predicate_method_result) do
true | true | true
false | false | false
1 | true | true
0 | false | false
'1' | true | true
'0' | false | false
'true' | true | true
'false' | false | false
'foobar' | nil | false
'' | nil | false
nil | nil | false
'on' | true | true
'off' | false | false
'yes' | true | true
'no' | false | false
'n' | false | false
'y' | true | true
't' | true | true
'f' | false | false
end
with_them do
it 'has the correct value' do
expect(integration).to have_attributes(
test_value: be(method_result),
test_value?: be(predicate_method_result)
)
# Make sure the original value is stored correctly
expect(integration.send(:test_value_before_type_cast)).to eq(input)
expect(integration.properties).to include('test_value' => input)
end
context 'when using data fields' do
let(:klass) do
Class.new(Integration) do
field :project_url, storage: :data_fields, type: :checkbox
def data_fields
issue_tracker_data || build_issue_tracker_data
end
end
end
let(:integration) { klass.new(project_url: input) }
it 'has the correct value' do
expect(integration).to have_attributes(
project_url: be(method_result),
project_url?: be(predicate_method_result)
)
# Make sure the original value is stored correctly
expect(integration.send(:project_url_before_type_cast)).to eq(input == false ? 'false' : input)
expect(integration.properties).not_to include('project_url')
end
end
end
it 'returns values when initialized without input' do
integration = klass.new
expect(integration).to have_attributes(
test_value: be_nil,
test_value?: be(false)
)
end
end
describe '#attributes' do
it 'does not include properties' do
expect(build(:integration, project: project).attributes).not_to have_key('properties')
end
it 'can be used in assign_attributes without nullifying properties' do
record = build(:integration, :instance, properties: { url: generate(:url) })
attrs = record.attributes
expect { record.assign_attributes(attrs) }.not_to change { record.properties }
end
end
describe '#dup' do
let(:original) { build(:integration, project: project, properties: { one: 1, two: 2, three: 3 }) }
it 'results in distinct ciphertexts, but identical properties' do
copy = original.dup
expect(copy).to have_attributes(properties: eq(original.properties))
expect(copy).not_to have_attributes(
encrypted_properties: eq(original.encrypted_properties)
)
end
context 'when the model supports data-fields' do
let(:original) { build(:jira_integration, project: project, username: generate(:username), url: generate(:url)) }
it 'creates distinct but identical data-fields' do
copy = original.dup
expect(copy).to have_attributes(
username: original.username,
url: original.url
)
expect(copy.data_fields).not_to eq(original.data_fields)
end
end
end
describe '#async_execute' do
let(:integration) { build(:jenkins_integration, id: 123) }
let(:data) { { object_kind: 'build' } }
let(:serialized_data) { data.deep_stringify_keys }
let(:supported_events) { %w[push build] }
subject(:async_execute) { integration.async_execute(data) }
before do
allow(integration).to receive(:supported_events).and_return(supported_events)
end
it 'queues a Integrations::ExecuteWorker' do
expect(Integrations::ExecuteWorker).to receive(:perform_async).with(integration.id, serialized_data)
async_execute
end
context 'when the event is not supported' do
let(:supported_events) { %w[issue] }
it 'does not queue a worker' do
expect(Integrations::ExecuteWorker).not_to receive(:perform_async)
async_execute
end
it 'writes a log' do
expect(Gitlab::IntegrationsLogger).to receive(:info).with(
hash_including(
message: 'async_execute did nothing due to event not being supported',
integration_class: 'Integrations::Jenkins',
event: 'build'
)
).and_call_original
async_execute
end
end
context 'when the Gitlab::SilentMode is enabled' do
before do
allow(Gitlab::SilentMode).to receive(:enabled?).and_return(true)
end
it 'does not queue a worker' do
expect(Integrations::ExecuteWorker).not_to receive(:perform_async)
async_execute
end
end
end
describe '.instance_specific_integration_types' do
subject { described_class.instance_specific_integration_types }
it { is_expected.to eq(['Integrations::BeyondIdentity']) }
end
end
|