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 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ProjectsHelper, feature_category: :source_code_management do
include ProjectForksHelper
include AfterNextHelpers
let_it_be_with_reload(:project) { create(:project, :repository) }
let_it_be_with_refind(:project_with_repo) { create(:project, :repository) }
let_it_be(:user) { create(:user) }
before do
allow(helper).to receive(:current_user).and_return(user)
helper.instance_variable_set(:@project, project)
end
describe '#project_incident_management_setting' do
context 'when incident_management_setting exists' do
let(:project_incident_management_setting) do
create(:project_incident_management_setting, project: project)
end
it 'return project_incident_management_setting' do
expect(helper.project_incident_management_setting).to(
eq(project_incident_management_setting)
)
end
end
context 'when incident_management_setting does not exist' do
it 'builds incident_management_setting' do
setting = helper.project_incident_management_setting
expect(setting).not_to be_persisted
expect(setting.create_issue).to be_falsey
expect(setting.send_email).to be_falsey
expect(setting.issue_template_key).to be_nil
end
end
end
describe '#error_tracking_setting_project_json' do
context 'error tracking setting does not exist' do
it 'returns nil' do
expect(helper.error_tracking_setting_project_json).to be_nil
end
end
context 'error tracking setting exists' do
let_it_be(:error_tracking_setting) { create(:project_error_tracking_setting, project: project) }
context 'api_url present' do
let(:json) do
{
sentry_project_id: error_tracking_setting.sentry_project_id,
name: error_tracking_setting.project_name,
organization_name: error_tracking_setting.organization_name,
organization_slug: error_tracking_setting.organization_slug,
slug: error_tracking_setting.project_slug
}.to_json
end
it 'returns error tracking json' do
expect(helper.error_tracking_setting_project_json).to eq(json)
end
end
context 'api_url not present' do
it 'returns nil' do
project.error_tracking_setting.api_url = nil
project.error_tracking_setting.enabled = false
expect(helper.error_tracking_setting_project_json).to be_nil
end
end
end
end
describe "can_change_visibility_level?" do
let_it_be(:user) { create(:project_member, :reporter, user: create(:user), project: project).user }
let(:forked_project) { fork_project(project, user) }
it "returns false if there are no appropriate permissions" do
allow(helper).to receive(:can?) { false }
expect(helper.can_change_visibility_level?(project, user)).to be_falsey
end
it "returns true if there are permissions" do
allow(helper).to receive(:can?) { true }
expect(helper.can_change_visibility_level?(project, user)).to be_truthy
end
end
describe '#can_disable_emails?' do
let_it_be(:user) { create(:project_member, :maintainer, user: create(:user), project: project).user }
it 'returns true for the project owner' do
allow(helper).to receive(:can?).with(project.owner, :set_emails_disabled, project) { true }
expect(helper.can_disable_emails?(project, project.owner)).to be_truthy
end
it 'returns false for anyone else' do
allow(helper).to receive(:can?).with(user, :set_emails_disabled, project) { false }
expect(helper.can_disable_emails?(project, user)).to be_falsey
end
it 'returns false if group emails disabled' do
project = create(:project, group: create(:group))
allow(project.group).to receive(:emails_disabled?).and_return(true)
expect(helper.can_disable_emails?(project, project.owner)).to be_falsey
end
end
describe '#can_set_diff_preview_in_email?' do
let_it_be(:user) { create(:project_member, :maintainer, user: create(:user), project: project).user }
it 'returns true for the project owner' do
expect(helper.can_set_diff_preview_in_email?(project, project.owner)).to be_truthy
end
it 'returns false for anyone else' do
expect(helper.can_set_diff_preview_in_email?(project, user)).to be_falsey
end
context 'respects the settings of a parent group' do
context 'when a parent group has disabled diff previews ' do
it 'returns false for all users' do
new_project = create(:project, group: create(:group))
new_project.group.update_attribute(:show_diff_preview_in_email, false)
expect(helper.can_set_diff_preview_in_email?(new_project, new_project.owner)).to be_falsey
expect(helper.can_set_diff_preview_in_email?(new_project, user)).to be_falsey
end
end
end
end
describe '#load_pipeline_status' do
it 'loads the pipeline status in batch' do
helper.load_pipeline_status([project])
# Skip lazy loading of the `pipeline_status` attribute
pipeline_status = project.instance_variable_get(:@pipeline_status)
expect(pipeline_status).to be_a(Gitlab::Cache::Ci::ProjectPipelineStatus)
end
end
describe '#load_catalog_resources' do
before_all do
create_list(:project, 2)
end
let_it_be(:projects) { Project.all.to_a }
it 'does not execute a database query when project.catalog_resource is accessed' do
helper.load_catalog_resources(projects)
queries = ActiveRecord::QueryRecorder.new do
projects.each(&:catalog_resource)
end
expect(queries).not_to exceed_query_limit(0)
end
end
describe '#last_pipeline_from_status_cache' do
before do
# clear cross-example caches
project_with_repo.pipeline_status.delete_from_cache
project_with_repo.instance_variable_set(:@pipeline_status, nil)
end
context 'without a pipeline' do
it 'returns nil', :aggregate_failures do
expect(::Gitlab::GitalyClient).to receive(:call).at_least(:once).and_call_original
actual_pipeline = last_pipeline_from_status_cache(project_with_repo)
expect(actual_pipeline).to be_nil
end
context 'when pipeline_status is loaded' do
before do
project_with_repo.pipeline_status # this loads the status
end
it 'returns nil without calling gitaly when there is no pipeline', :aggregate_failures do
expect(::Gitlab::GitalyClient).not_to receive(:call)
actual_pipeline = last_pipeline_from_status_cache(project_with_repo)
expect(actual_pipeline).to be_nil
end
end
context 'when FF load_last_pipeline_from_pipeline_status is disabled' do
before do
stub_feature_flags(last_pipeline_from_pipeline_status: false)
end
it 'returns nil', :aggregate_failures do
expect(project_with_repo).not_to receive(:pipeline_status)
actual_pipeline = last_pipeline_from_status_cache(project_with_repo)
expect(actual_pipeline).to be_nil
end
end
end
context 'with a pipeline' do
let_it_be(:pipeline) { create(:ci_pipeline, project: project_with_repo) }
it 'returns the latest pipeline', :aggregate_failures do
expect(::Gitlab::GitalyClient).to receive(:call).at_least(:once).and_call_original
actual_pipeline = last_pipeline_from_status_cache(project_with_repo)
expect(actual_pipeline).to eq pipeline
end
context 'when pipeline_status is loaded' do
before do
project_with_repo.pipeline_status # this loads the status
end
it 'returns the latest pipeline without calling gitaly' do
expect(::Gitlab::GitalyClient).not_to receive(:call)
actual_pipeline = last_pipeline_from_status_cache(project_with_repo)
expect(actual_pipeline).to eq pipeline
end
context 'when FF load_last_pipeline_from_pipeline_status is disabled' do
before do
stub_feature_flags(last_pipeline_from_pipeline_status: false)
end
it 'returns the latest pipeline', :aggregate_failures do
expect(project_with_repo).not_to receive(:pipeline_status)
actual_pipeline = last_pipeline_from_status_cache(project_with_repo)
expect(actual_pipeline).to eq pipeline
end
end
end
end
end
describe '#show_no_ssh_key_message?' do
context 'user has no keys' do
it 'returns true' do
expect(helper.show_no_ssh_key_message?(project)).to be_truthy
end
end
context 'user has an ssh key' do
it 'returns false' do
create(:personal_key, user: user)
expect(helper.show_no_ssh_key_message?(project)).to be_falsey
end
end
end
describe '#show_no_password_message?' do
context 'user has password set' do
it 'returns false' do
expect(helper.show_no_password_message?).to be_falsey
end
end
context 'user has hidden the message' do
it 'returns false' do
allow(helper).to receive(:cookies).and_return(hide_no_password_message: true)
expect(helper.show_no_password_message?).to be_falsey
end
end
context 'user requires a password for Git' do
it 'returns true' do
allow(user).to receive(:require_password_creation_for_git?).and_return(true)
expect(helper.show_no_password_message?).to be_truthy
end
end
context 'user requires a personal access token for Git' do
it 'returns true' do
allow(user).to receive(:require_password_creation_for_git?).and_return(false)
allow(user).to receive(:require_personal_access_token_creation_for_git_auth?).and_return(true)
expect(helper.show_no_password_message?).to be_truthy
end
end
end
describe '#no_password_message' do
let(:user) { create(:user, password_automatically_set: true) }
context 'password authentication is enabled for Git' do
it 'returns message prompting user to set password or set up a PAT' do
stub_application_setting(password_authentication_enabled_for_git?: true)
expect(helper.no_password_message).to eq('Your account is authenticated with SSO or SAML. To push and pull over HTTP with Git using this account, you must <a href="/-/user_settings/password/edit">set a password</a> or <a href="/-/user_settings/personal_access_tokens">set up a personal access token</a> to use instead of a password.')
end
end
context 'password authentication is disabled for Git' do
it 'returns message prompting user to set up a PAT' do
stub_application_setting(password_authentication_enabled_for_git?: false)
expect(helper.no_password_message).to eq('Your account is authenticated with SSO or SAML. To push and pull over HTTP with Git using this account, you must <a href="/-/user_settings/personal_access_tokens">set up a personal access token</a> to use instead of a password.')
end
end
end
describe '#link_to_project' do
let(:group) { create(:group, name: 'group name with space') }
let(:project) { create(:project, group: group, name: 'project name with space') }
subject { link_to_project(project) }
it 'returns an HTML link to the project' do
expect(subject).to match(%r{/#{group.full_path}/#{project.path}})
expect(subject).to include('group name with space /')
expect(subject).to include('project name with space')
end
end
describe '#link_to_member_avatar' do
let(:user) { build_stubbed(:user) }
let(:expected) { double }
before do
expect(helper).to receive(:avatar_icon_for_user).with(user, 16).and_return(expected)
end
it 'returns image tag for member avatar' do
expect(helper).to receive(:image_tag).with(expected, { width: 16, class: %w[avatar avatar-inline s16], alt: "" })
helper.link_to_member_avatar(user)
end
it 'returns image tag with avatar class' do
expect(helper).to receive(:image_tag).with(expected, { width: 16, class: %w[avatar avatar-inline s16 any-avatar-class], alt: "" })
helper.link_to_member_avatar(user, avatar_class: "any-avatar-class")
end
end
describe '#link_to_member' do
let(:group) { build_stubbed(:group) }
let(:project) { build_stubbed(:project, group: group) }
let(:user) { build_stubbed(:user, name: '<h1>Administrator</h1>') }
describe 'using the default options' do
it 'returns an HTML link to the user' do
link = helper.link_to_member(user)
expect(link).to match(%r{/#{user.username}})
end
it 'HTML escapes the name of the user' do
link = helper.link_to_member(user)
expect(link).to include(ERB::Util.html_escape(user.name))
expect(link).not_to include(user.name)
end
end
context 'when user is nil' do
it 'returns "(deleted)"' do
link = helper.link_to_member(nil)
expect(link).to eq("(deleted)")
end
end
end
describe 'default_clone_protocol' do
let(:user) { nil }
context 'when user is not logged in and gitlab protocol is HTTP' do
it 'returns HTTP' do
expect(helper.send(:default_clone_protocol)).to eq('http')
end
end
context 'when user is not logged in and gitlab protocol is HTTPS' do
it 'returns HTTPS' do
stub_config_setting(protocol: 'https')
expect(helper.send(:default_clone_protocol)).to eq('https')
end
end
end
describe '#last_push_event' do
let(:user) { double(:user, fork_of: nil) }
let(:project) { double(:project, id: 1) }
context 'when there is no current_user' do
let(:user) { nil }
it 'returns nil' do
expect(helper.last_push_event).to eq(nil)
end
end
it 'returns recent push on the current project' do
event = double(:event)
expect(user).to receive(:recent_push).with(project).and_return(event)
expect(helper.last_push_event).to eq(event)
end
end
describe '#show_projects' do
let(:projects) do
Project.all
end
it 'returns true when there are projects' do
expect(helper.show_projects?(projects, {})).to eq(true)
end
it 'returns true when there are no projects but a name is given' do
expect(helper.show_projects?(Project.none, name: 'foo')).to eq(true)
end
it 'returns true when there are no projects but personal is present' do
expect(helper.show_projects?(Project.none, personal: 'true')).to eq(true)
end
it 'returns false when there are no projects and there is no name' do
expect(helper.show_projects?(Project.none, {})).to eq(false)
end
it 'returns true when there are no projects but archived param is "only"' do
expect(helper.show_projects?(Project.none, archived: 'only')).to eq(true)
end
end
describe '#push_to_create_project_command' do
let(:user) { build_stubbed(:user, username: 'john') }
it 'returns the command to push to create project over HTTP' do
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:enabled_git_access_protocol) { 'http' }
expect(helper.push_to_create_project_command(user)).to eq('git push --set-upstream http://test.host/john/$(git rev-parse --show-toplevel | xargs basename).git $(git rev-parse --abbrev-ref HEAD)')
end
it 'returns the command to push to create project over SSH' do
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:enabled_git_access_protocol) { 'ssh' }
expect(helper.push_to_create_project_command(user)).to eq("git push --set-upstream #{Gitlab.config.gitlab.user}@localhost:john/$(git rev-parse --show-toplevel | xargs basename).git $(git rev-parse --abbrev-ref HEAD)")
end
end
describe '#any_projects?' do
it 'returns true when projects will be returned' do
expect(helper.any_projects?(Project.all)).to eq(true)
end
it 'returns false when no projects will be returned' do
expect(helper.any_projects?(Project.none)).to eq(false)
end
it 'returns true when using a non-empty Array' do
expect(helper.any_projects?([project])).to eq(true)
end
it 'returns false when using an empty Array' do
expect(helper.any_projects?([])).to eq(false)
end
it 'only executes a single query when a LIMIT is applied' do
relation = Project.limit(1)
recorder = ActiveRecord::QueryRecorder.new do
2.times do
helper.any_projects?(relation)
end
end
expect(recorder.count).to eq(1)
end
end
describe '#git_user_name' do
let(:user) { build_stubbed(:user, name: 'John "A" Doe53') }
it 'parses quotes in name' do
expect(helper.send(:git_user_name)).to eq('John \"A\" Doe53')
end
end
describe '#git_user_email' do
context 'not logged-in' do
let(:user) { nil }
it 'returns your@email.com' do
expect(helper.send(:git_user_email)).to eq('your@email.com')
end
end
context 'user logged in' do
context 'user has no configured commit email' do
it 'returns the primary email' do
expect(helper.send(:git_user_email)).to eq(user.email)
end
end
context 'user has a configured commit email' do
before do
confirmed_email = create(:email, :confirmed, user: user)
user.update!(commit_email: confirmed_email.email)
end
it 'returns the commit email' do
expect(helper.send(:git_user_email)).to eq(user.commit_email)
end
end
end
end
describe 'show_xcode_link' do
let(:mac_ua) { 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36' }
let(:ios_ua) { 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3' }
context 'when the repository is xcode compatible' do
before do
allow(project.repository).to receive(:xcode_project?).and_return(true)
end
it 'returns false if the visitor is not using macos' do
allow(helper).to receive(:browser).and_return(Browser.new(ios_ua))
expect(helper.show_xcode_link?(project)).to eq(false)
end
it 'returns true if the visitor is using macos' do
allow(helper).to receive(:browser).and_return(Browser.new(mac_ua))
expect(helper.show_xcode_link?(project)).to eq(true)
end
end
context 'when the repository is not xcode compatible' do
before do
allow(project.repository).to receive(:xcode_project?).and_return(false)
end
it 'returns false if the visitor is not using macos' do
allow(helper).to receive(:browser).and_return(Browser.new(ios_ua))
expect(helper.show_xcode_link?(project)).to eq(false)
end
it 'returns false if the visitor is using macos' do
allow(helper).to receive(:browser).and_return(Browser.new(mac_ua))
expect(helper.show_xcode_link?(project)).to eq(false)
end
end
end
describe '#explore_projects_tab?' do
subject { helper.explore_projects_tab? }
it 'returns true when on the "All" tab under "Explore projects"' do
allow(@request).to receive(:path) { explore_projects_path }
expect(subject).to be_truthy
end
it 'returns true when on the "Trending" tab under "Explore projects"' do
allow(@request).to receive(:path) { trending_explore_projects_path }
expect(subject).to be_truthy
end
it 'returns true when on the "Starred" tab under "Explore projects"' do
allow(@request).to receive(:path) { starred_explore_projects_path }
expect(subject).to be_truthy
end
it 'returns false when on the "Your projects" tab' do
allow(@request).to receive(:path) { dashboard_projects_path }
expect(subject).to be_falsey
end
end
describe '#show_count?' do
context 'enabled flag' do
it 'returns true if compact mode is disabled' do
expect(helper.show_count?).to be_truthy
end
it 'returns false if compact mode is enabled' do
expect(helper.show_count?(compact_mode: true)).to be_falsey
end
end
context 'disabled flag' do
it 'returns false if disabled flag is true' do
expect(helper.show_count?(disabled: true)).to be_falsey
end
it 'returns true if disabled flag is false' do
expect(helper).to be_show_count
end
end
end
describe '#show_auto_devops_implicitly_enabled_banner?' do
using RSpec::Parameterized::TableSyntax
let_it_be_with_reload(:project_with_auto_devops) { create(:project, :repository, :auto_devops) }
let(:feature_visibilities) do
{
enabled: ProjectFeature::ENABLED,
disabled: ProjectFeature::DISABLED
}
end
where(:global_setting, :project_setting, :builds_visibility, :gitlab_ci_yml, :user_access, :result) do
# With ADO implicitly enabled scenarios
true | nil | :disabled | true | :developer | false
true | nil | :disabled | true | :maintainer | false
true | nil | :disabled | true | :owner | false
true | nil | :disabled | false | :developer | false
true | nil | :disabled | false | :maintainer | false
true | nil | :disabled | false | :owner | false
true | nil | :enabled | true | :developer | false
true | nil | :enabled | true | :maintainer | false
true | nil | :enabled | true | :owner | false
true | nil | :enabled | false | :developer | false
true | nil | :enabled | false | :maintainer | true
true | nil | :enabled | false | :owner | true
# With ADO enabled scenarios
true | true | :disabled | true | :developer | false
true | true | :disabled | true | :maintainer | false
true | true | :disabled | true | :owner | false
true | true | :disabled | false | :developer | false
true | true | :disabled | false | :maintainer | false
true | true | :disabled | false | :owner | false
true | true | :enabled | true | :developer | false
true | true | :enabled | true | :maintainer | false
true | true | :enabled | true | :owner | false
true | true | :enabled | false | :developer | false
true | true | :enabled | false | :maintainer | false
true | true | :enabled | false | :owner | false
# With ADO disabled scenarios
true | false | :disabled | true | :developer | false
true | false | :disabled | true | :maintainer | false
true | false | :disabled | true | :owner | false
true | false | :disabled | false | :developer | false
true | false | :disabled | false | :maintainer | false
true | false | :disabled | false | :owner | false
true | false | :enabled | true | :developer | false
true | false | :enabled | true | :maintainer | false
true | false | :enabled | true | :owner | false
true | false | :enabled | false | :developer | false
true | false | :enabled | false | :maintainer | false
true | false | :enabled | false | :owner | false
end
def grant_user_access(project, user, access)
case access
when :developer, :maintainer
project.add_member(user, access)
when :owner
project.namespace.update!(owner: user)
end
end
with_them do
let(:project) do
if project_setting.nil?
project_with_repo
else
project_with_auto_devops
end
end
before do
stub_application_setting(auto_devops_enabled: global_setting)
allow(project).to receive(:has_ci_config_file?).and_return(gitlab_ci_yml)
grant_user_access(project, user, user_access)
project.project_feature.update_attribute(:builds_access_level, feature_visibilities[builds_visibility])
project.auto_devops.update_attribute(:enabled, project_setting) unless project_setting.nil?
end
subject { helper.show_auto_devops_implicitly_enabled_banner?(project, user) }
it { is_expected.to eq(result) }
end
end
describe '#show_mobile_devops_project_promo?' do
using RSpec::Parameterized::TableSyntax
where(:hide_cookie, :mobile_target_platform, :result) do
false | true | true
false | false | false
true | false | false
true | true | false
end
with_them do
before do
allow(Gitlab).to receive(:com?) { gitlab_com }
project.project_setting.target_platforms << 'ios' if mobile_target_platform
helper.request.cookies["hide_mobile_devops_promo_#{project.id}"] = true if hide_cookie
end
it 'resolves if mobile devops promo banner should be displayed' do
expect(helper.show_mobile_devops_project_promo?(project)).to eq result
end
end
end
describe '#can_admin_project_member?' do
context 'when user is project owner' do
let(:user) { project.owner }
it 'returns true for owner of project' do
expect(helper.can_admin_project_member?(project)).to eq true
end
end
context 'when user is not a project owner' do
using RSpec::Parameterized::TableSyntax
where(:user_project_role, :can_admin) do
:maintainer | true
:developer | false
:reporter | false
:guest | false
end
with_them do
before do
project.add_role(user, user_project_role)
end
it 'resolves if the user can import members' do
expect(helper.can_admin_project_member?(project)).to eq can_admin
end
end
end
end
describe '#project_license_name(project)', :request_store do
let_it_be(:repository) { project.repository }
subject { project_license_name(project) }
def license_name
project_license_name(project)
end
context 'gitaly is working appropriately' do
let(:license) { ::Gitlab::Git::DeclaredLicense.new(key: 'mit', name: 'MIT License') }
before do
expect(repository).to receive(:license).and_return(license)
end
it 'returns the license name' do
expect(subject).to eq(license.name)
end
it 'memoizes the value' do
expect do
2.times { expect(license_name).to eq(license.name) }
end.to change { Gitlab::GitalyClient.get_request_count }.by_at_most(1)
end
end
context 'gitaly is unreachable' do
shared_examples 'returns nil and tracks exception' do
it { is_expected.to be_nil }
it 'tracks the exception' do
expect(Gitlab::ErrorTracking).to receive(:track_exception).with(
an_instance_of(exception)
)
subject
end
it 'memoizes the nil value' do
expect do
2.times { expect(license_name).to be_nil }
end.to change { Gitlab::GitalyClient.get_request_count }.by_at_most(1)
end
end
before do
expect(repository).to receive(:license).and_raise(exception)
end
context "Gitlab::Git::CommandError" do
let(:exception) { Gitlab::Git::CommandError }
it_behaves_like 'returns nil and tracks exception'
end
context "GRPC::Unavailable" do
let(:exception) { GRPC::Unavailable }
it_behaves_like 'returns nil and tracks exception'
end
context "GRPC::DeadlineExceeded" do
let(:exception) { GRPC::DeadlineExceeded }
it_behaves_like 'returns nil and tracks exception'
end
end
end
describe '#show_terraform_banner?' do
let_it_be(:ruby) { create(:programming_language, name: 'Ruby') }
let_it_be(:hcl) { create(:programming_language, name: 'HCL') }
subject { helper.show_terraform_banner?(project) }
before do
create(:repository_language, project: project, programming_language: language, share: 1)
end
context 'the project does not contain terraform files' do
let(:language) { ruby }
it { is_expected.to be_falsey }
end
context 'the project contains terraform files' do
let(:language) { hcl }
it { is_expected.to be_truthy }
context 'the project already has a terraform state' do
before do
create(:terraform_state, project: project)
end
it { is_expected.to be_falsey }
end
context 'the :show_terraform_banner feature flag is disabled' do
before do
stub_feature_flags(show_terraform_banner: false)
end
it { is_expected.to be_falsey }
end
end
end
describe '#show_lfs_misconfiguration_banner?' do
before do
allow(project).to receive(:lfs_enabled?).and_return(true)
end
subject { helper.show_lfs_misconfiguration_banner?(project) }
it { is_expected.to be_falsey }
context 'when the project contains an lfs_object' do
before do
create(:lfs_objects_project, project: project)
end
context 'when it does not have a .gitattributes file' do
before do
allow(project.repository).to receive(:has_gitattributes?).and_return(false)
end
it { is_expected.to be_truthy }
context 'when lfs is not enabled' do
before do
allow(project).to receive(:lfs_enabled?).and_return(false)
end
it { is_expected.to be_falsey }
end
context 'when lfs_misconfiguration_banner feature flag is disabled' do
before do
stub_feature_flags(lfs_misconfiguration_banner: false)
end
it { is_expected.to be_falsey }
end
end
context 'when it does have a .gitattributes file' do
before do
allow(project.repository).to receive(:has_gitattributes?).and_return(true)
end
it { is_expected.to be_falsey }
end
end
end
describe '#project_title' do
subject { helper.project_title(project) }
it 'enqueues the elements in the breadcrumb schema list' do
expect(helper).to receive(:push_to_schema_breadcrumb).with(project.namespace.name, user_path(project.owner))
expect(helper).to receive(:push_to_schema_breadcrumb).with(project.name, project_path(project), nil)
subject
end
context 'with malicious owner name' do
before do
allow_any_instance_of(User).to receive(:name).and_return('a<a class="fixed-top" href=/api/v4')
end
it 'escapes the malicious owner name' do
expect(subject).not_to include('<a class="fixed-top" href="/api/v4"></a>')
end
end
end
describe '#project_permissions_panel_data' do
subject { helper.project_permissions_panel_data(project) }
before do
allow(helper).to receive(:can?) { true }
end
it 'includes project_permissions_settings' do
settings = subject[:currentSettings]
expect(settings).to include(
packagesEnabled: !!project.packages_enabled,
packageRegistryAllowAnyoneToPullOption: ::Gitlab::CurrentSettings.package_registry_allow_anyone_to_pull_option,
visibilityLevel: project.visibility_level,
requestAccessEnabled: !!project.request_access_enabled,
issuesAccessLevel: project.project_feature.issues_access_level,
repositoryAccessLevel: project.project_feature.repository_access_level,
forkingAccessLevel: project.project_feature.forking_access_level,
mergeRequestsAccessLevel: project.project_feature.merge_requests_access_level,
buildsAccessLevel: project.project_feature.builds_access_level,
wikiAccessLevel: project.project_feature.wiki_access_level,
snippetsAccessLevel: project.project_feature.snippets_access_level,
pagesAccessLevel: project.project_feature.pages_access_level,
analyticsAccessLevel: project.project_feature.analytics_access_level,
containerRegistryEnabled: !!project.container_registry_enabled,
lfsEnabled: !!project.lfs_enabled,
emailsEnabled: project.emails_enabled?,
showDefaultAwardEmojis: project.show_default_award_emojis?,
securityAndComplianceAccessLevel: project.security_and_compliance_access_level,
containerRegistryAccessLevel: project.project_feature.container_registry_access_level,
environmentsAccessLevel: project.project_feature.environments_access_level,
featureFlagsAccessLevel: project.project_feature.feature_flags_access_level,
releasesAccessLevel: project.project_feature.releases_access_level,
infrastructureAccessLevel: project.project_feature.infrastructure_access_level,
modelExperimentsAccessLevel: project.project_feature.model_experiments_access_level,
modelRegistryAccessLevel: project.project_feature.model_registry_access_level
)
end
it 'includes membersPagePath' do
expect(subject).to include(membersPagePath: project_project_members_path(project))
end
it 'includes canAddCatalogResource' do
allow(helper).to receive(:can?) { false }
expect(subject).to include(canAddCatalogResource: false)
end
end
describe '#project_classes' do
subject { helper.project_classes(project) }
it { is_expected.to be_a(String) }
context 'PUC highlighting enabled' do
before do
project.warn_about_potentially_unwanted_characters = true
end
it { is_expected.to include('project-highlight-puc') }
end
context 'PUC highlighting disabled' do
before do
project.warn_about_potentially_unwanted_characters = false
end
it { is_expected.not_to include('project-highlight-puc') }
end
end
describe "#delete_confirm_phrase" do
subject { helper.delete_confirm_phrase(project) }
it 'includes the project path with namespace' do
expect(subject).to eq(project.path_with_namespace)
end
end
context 'fork security helpers' do
using RSpec::Parameterized::TableSyntax
describe "#able_to_see_merge_requests?" do
subject { helper.able_to_see_merge_requests?(project, user) }
where(:can_read_merge_request, :merge_requests_enabled, :expected) do
false | false | false
true | false | false
false | true | false
true | true | true
end
with_them do
before do
allow(project).to receive(:merge_requests_enabled?).and_return(merge_requests_enabled)
allow(helper).to receive(:can?).with(user, :read_merge_request, project).and_return(can_read_merge_request)
end
it 'returns the correct response' do
expect(subject).to eq(expected)
end
end
end
describe "#able_to_see_issues?" do
subject { helper.able_to_see_issues?(project, user) }
where(:can_read_issues, :issues_enabled, :expected) do
false | false | false
true | false | false
false | true | false
true | true | true
end
with_them do
before do
allow(project).to receive(:issues_enabled?).and_return(issues_enabled)
allow(helper).to receive(:can?).with(user, :read_issue, project).and_return(can_read_issues)
end
it 'returns the correct response' do
expect(subject).to eq(expected)
end
end
end
describe '#able_to_see_forks_count?' do
subject { helper.able_to_see_forks_count?(project, user) }
where(:can_read_code, :forking_enabled, :expected) do
false | false | false
true | false | false
false | true | false
true | true | true
end
with_them do
before do
allow(project).to receive(:forking_enabled?).and_return(forking_enabled)
allow(helper).to receive(:can?).with(user, :read_code, project).and_return(can_read_code)
end
it 'returns the correct response' do
expect(subject).to eq(expected)
end
end
end
end
describe '#fork_button_data_attributes' do
using RSpec::Parameterized::TableSyntax
let_it_be(:project) { create(:project, :repository, :public) }
project_path = '/project/path'
project_forks_path = '/project/forks'
project_new_fork_path = '/project/new/fork'
user_fork_url = '/user/fork'
common_data_attributes = {
forks_count: 4,
project_full_path: project_path,
project_forks_url: project_forks_path,
can_create_fork: "true",
can_fork_project: "true",
can_read_code: "true",
new_fork_url: project_new_fork_path
}
data_attributes_with_user_fork_url = common_data_attributes.merge({ user_fork_url: user_fork_url })
data_attributes_without_user_fork_url = common_data_attributes.merge({ user_fork_url: nil })
subject { helper.fork_button_data_attributes(project) }
# The stubs for the forkable namespaces seem not to make sense (they're just numbers),
# but they're set up that way because we don't really care about what the array contains, only about its length
where(:has_user, :project_already_forked, :forkable_namespaces, :expected) do
false | false | [] | nil
true | false | [0] | data_attributes_without_user_fork_url
true | false | [0, 1] | data_attributes_without_user_fork_url
true | true | [0] | data_attributes_with_user_fork_url
true | true | [0, 1] | data_attributes_without_user_fork_url
end
with_them do
before do
current_user = user if has_user
allow(helper).to receive(:current_user).and_return(current_user)
allow(user).to receive(:can?).and_call_original
allow(user).to receive(:can?).with(:fork_project, project).and_return(true)
allow(user).to receive(:can?).with(:create_fork).and_return(true)
allow(user).to receive(:can?).with(:create_projects, anything).and_return(true)
allow(user).to receive(:already_forked?).with(project).and_return(project_already_forked)
allow(user).to receive(:forkable_namespaces).and_return(forkable_namespaces)
allow(project).to receive(:forks_count).and_return(4)
allow(project).to receive(:full_path).and_return(project_path)
user_fork_path = user_fork_url if project_already_forked
allow(helper).to receive(:namespace_project_path).with(user, anything).and_return(user_fork_path)
allow(helper).to receive(:new_project_fork_path).with(project).and_return(project_new_fork_path)
allow(helper).to receive(:project_forks_path).with(project).and_return(project_forks_path)
end
it { is_expected.to eq(expected) }
end
end
describe '#star_count_data_attributes' do
before do
allow(user).to receive(:starred?).with(project).and_return(starred)
allow(helper).to receive(:new_session_path).and_return(sign_in_path)
allow(project).to receive(:star_count).and_return(5)
end
let(:sign_in_path) { 'sign/in/path' }
let(:common_data_attributes) do
{
project_id: project.id,
sign_in_path: sign_in_path,
star_count: 5,
starrers_path: "/#{project.full_path}/-/starrers"
}
end
subject { helper.star_count_data_attributes(project) }
context 'when user has already starred the project' do
let(:starred) { true }
let(:expected) { common_data_attributes.merge({ starred: "true" }) }
it { is_expected.to eq(expected) }
end
context 'when user has not starred the project' do
let(:starred) { false }
let(:expected) { common_data_attributes.merge({ starred: "false" }) }
it { is_expected.to eq(expected) }
end
end
describe '#notification_data_attributes' do
before do
allow(helper).to receive(:help_page_path).and_return(notification_help_path)
allow(project).to receive(:emails_disabled?).and_return(false)
end
let(:notification_help_path) { 'notification/help/path' }
let(:notification_dropdown_items) { '["global","watch","participating","mention","disabled"]' }
context "returns default user notification settings" do
let(:expected) do
{
emails_disabled: "false",
notification_dropdown_items: notification_dropdown_items,
notification_help_page_path: notification_help_path,
notification_level: "global"
}
end
subject { helper.notification_data_attributes(project) }
it { is_expected.to eq(expected) }
end
context "returns configured users notification settings" do
before do
allow(project).to receive(:emails_disabled?).and_return(true)
setting = user.notification_settings_for(project)
setting.level = :watch
setting.save!
end
let(:expected) do
{
emails_disabled: "true",
notification_dropdown_items: notification_dropdown_items,
notification_help_page_path: notification_help_path,
notification_level: "watch"
}
end
subject { helper.notification_data_attributes(project) }
it { is_expected.to eq(expected) }
end
end
describe '#home_panel_data_attributes' do
using RSpec::Parameterized::TableSyntax
where(:can_read_project, :is_empty_repo, :is_admin, :has_admin_path) do
true | true | true | true
false | false | true | true
true | true | false | false
false | false | false | false
end
with_them do
before do
allow(helper).to receive(:groups_projects_more_actions_dropdown_data).and_return(nil)
allow(helper).to receive(:fork_button_data_attributes).and_return(nil)
allow(helper).to receive(:notification_data_attributes).and_return(nil)
allow(helper).to receive(:star_count_data_attributes).and_return({})
allow(helper).to receive(:can?).with(user, :read_project, project).and_return(can_read_project)
allow(project).to receive(:empty_repo?).and_return(is_empty_repo)
allow(user).to receive(:can_admin_all_resources?).and_return(is_admin)
end
let(:expected) do
{
admin_path: (admin_project_path(project) if has_admin_path),
can_read_project: can_read_project.to_s,
cicd_catalog_path: nil,
is_project_archived: "false",
project_avatar: nil,
is_project_empty: is_empty_repo.to_s,
project_id: project.id,
project_name: project.name,
project_visibility_level: "private"
}
end
subject { helper.home_panel_data_attributes }
it { is_expected.to include(expected) }
end
end
describe '#visibility_level_name' do
using RSpec::Parameterized::TableSyntax
where(:banned_user, :feature_flag_enabled, :expected) do
true | true | 'banned'
false | false | 'private'
true | false | 'private'
false | true | 'private'
end
with_them do
before do
stub_feature_flags(hide_projects_of_banned_users: feature_flag_enabled)
allow(project).to receive(:created_and_owned_by_banned_user?).and_return(banned_user)
end
subject { visibility_level_name(project) }
it { is_expected.to eq(expected) }
end
end
shared_examples 'configure import method modal' do
context 'as a user' do
it 'returns a link to contact an administrator' do
allow(user).to receive(:can_admin_all_resources?).and_return(false)
expect(subject).to have_text("To enable importing projects from #{import_method}, ask your GitLab administrator to configure OAuth integration")
end
end
context 'as an administrator' do
it 'returns a link to configure bitbucket' do
allow(user).to receive(:can_admin_all_resources?).and_return(true)
expect(subject).to have_text("To enable importing projects from #{import_method}, as administrator you need to configure OAuth integration")
end
end
end
describe '#import_from_bitbucket_message' do
let(:import_method) { 'Bitbucket' }
subject { helper.import_from_bitbucket_message }
it_behaves_like 'configure import method modal'
end
describe "#show_archived_project_banner?" do
shared_examples 'does not show the banner' do |pass_project: true|
it do
expect(project.archived?).to be(false)
expect(helper.show_archived_project_banner?(pass_project ? project : nil)).to be(false)
end
end
context 'with no project' do
it_behaves_like 'does not show the banner', pass_project: false
end
context 'with unsaved project' do
let_it_be(:project) { build(:project) }
it_behaves_like 'does not show the banner'
end
context 'with the setting enabled' do
context 'with an active project' do
it_behaves_like 'does not show the banner'
end
context 'with an inactive project' do
before do
project.archived = true
project.save!
end
it 'shows the banner' do
expect(project.present?).to be(true)
expect(project.saved?).to be(true)
expect(project.archived?).to be(true)
expect(helper.show_archived_project_banner?(project)).to be(true)
expect(helper.show_inactive_project_deletion_banner?(project)).to be(false)
end
end
end
end
describe '#show_inactive_project_deletion_banner?' do
shared_examples 'does not show the banner' do |pass_project: true|
it { expect(helper.show_inactive_project_deletion_banner?(pass_project ? project : nil)).to be(false) }
end
context 'with no project' do
it_behaves_like 'does not show the banner', pass_project: false
end
context 'with unsaved project' do
let_it_be(:project) { build(:project) }
it_behaves_like 'does not show the banner'
end
context 'with the setting disabled' do
before do
stub_application_setting(delete_inactive_projects: false)
end
it_behaves_like 'does not show the banner'
end
context 'with the setting enabled' do
before do
stub_application_setting(delete_inactive_projects: true)
stub_application_setting(inactive_projects_min_size_mb: 0)
stub_application_setting(inactive_projects_send_warning_email_after_months: 1)
end
context 'with an active project' do
it_behaves_like 'does not show the banner'
end
context 'with an inactive project' do
before do
project.statistics.storage_size = 1.megabyte
project.last_activity_at = 1.year.ago
project.save!
end
it 'shows the banner' do
expect(helper.show_archived_project_banner?(project)).to be(false)
expect(helper.show_inactive_project_deletion_banner?(project)).to be(true)
end
end
end
end
describe '#inactive_project_deletion_date' do
let(:tracker) { instance_double(::Gitlab::InactiveProjectsDeletionWarningTracker) }
before do
stub_application_setting(inactive_projects_delete_after_months: 2)
stub_application_setting(inactive_projects_send_warning_email_after_months: 1)
allow(::Gitlab::InactiveProjectsDeletionWarningTracker).to receive(:new).with(project.id).and_return(tracker)
allow(tracker).to receive(:scheduled_deletion_date).and_return('2022-03-01')
end
it 'returns the deletion date' do
expect(helper.inactive_project_deletion_date(project)).to eq('2022-03-01')
end
end
describe '#can_admin_associated_clusters?' do
let_it_be_with_reload(:project) { create(:project) }
subject { helper.send(:can_admin_associated_clusters?, project) }
before do
allow(helper)
.to receive(:can?)
.with(user, :admin_cluster, namespace)
.and_return(user_can_admin_cluster)
end
context 'when project has a cluster' do
let_it_be(:namespace) { project }
before do
create(:cluster, projects: [namespace])
end
context 'if user can admin cluster' do
let_it_be(:user_can_admin_cluster) { true }
it { is_expected.to be_truthy }
end
context 'if user can not admin cluster' do
let_it_be(:user_can_admin_cluster) { false }
it { is_expected.to be_falsey }
end
end
context 'when project has a group cluster' do
let_it_be(:namespace) { create(:group) }
before do
project.update!(namespace: namespace)
create(:cluster, :group, groups: [namespace])
end
context 'if user can admin cluster' do
let_it_be(:user_can_admin_cluster) { true }
it { is_expected.to be_truthy }
end
context 'if user can not admin cluster' do
let_it_be(:user_can_admin_cluster) { false }
it { is_expected.to be_falsey }
end
end
context 'when project doesn\'t have a cluster' do
let_it_be(:namespace) { project }
context 'if user can admin cluster' do
let_it_be(:user_can_admin_cluster) { true }
it { is_expected.to be_falsey }
end
context 'if user can not admin cluster' do
let_it_be(:user_can_admin_cluster) { false }
it { is_expected.to be_falsey }
end
end
end
describe '#show_clusters_alert?' do
using RSpec::Parameterized::TableSyntax
subject { helper.show_clusters_alert?(project) }
where(:is_gitlab_com, :user_can_admin_cluster, :expected) do
false | false | false
false | true | false
true | false | false
true | true | true
end
with_them do
before do
allow(::Gitlab).to receive(:com?).and_return(is_gitlab_com)
allow(helper).to receive(:can_admin_associated_clusters?).and_return(user_can_admin_cluster)
end
it { is_expected.to eq(expected) }
end
end
describe '#clusters_deprecation_alert_message' do
subject { helper.clusters_deprecation_alert_message }
before do
allow(helper).to receive(:has_active_license?).and_return(has_active_license)
end
context 'if user has an active licence' do
let_it_be(:has_active_license) { true }
it 'displays the correct messagee' do
expect(subject).to eq(s_('ClusterIntegration|The certificate-based Kubernetes integration is deprecated and will be removed in the future. You should %{linkStart}migrate to the GitLab agent for Kubernetes%{linkEnd}. For more information, see the %{deprecationLinkStart}deprecation epic%{deprecationLinkEnd}, or contact GitLab support.'))
end
end
context 'if user doesn\'t have an active licence' do
let_it_be(:has_active_license) { false }
it 'displays the correct message' do
expect(subject).to eq(s_('ClusterIntegration|The certificate-based Kubernetes integration is deprecated and will be removed in the future. You should %{linkStart}migrate to the GitLab agent for Kubernetes%{linkEnd}. For more information, see the %{deprecationLinkStart}deprecation epic%{deprecationLinkEnd}.'))
end
end
end
describe '#project_coverage_chart_data_attributes' do
let(:ref) { 'ref' }
let(:daily_coverage_options) do
{
base_params: {
start_date: Date.current - 90.days,
end_date: Date.current,
ref_path: project.repository.expand_ref(ref),
param_type: 'coverage'
},
download_path: namespace_project_ci_daily_build_group_report_results_path(
namespace_id: project.namespace,
project_id: project,
format: :csv
),
graph_api_path: namespace_project_ci_daily_build_group_report_results_path(
namespace_id: project.namespace,
project_id: project,
format: :json
)
}
end
it 'returns project data to render coverage chart' do
expect(helper.project_coverage_chart_data_attributes(daily_coverage_options, ref)).to include(
graph_endpoint: start_with(daily_coverage_options.fetch(:graph_api_path)),
graph_start_date: daily_coverage_options.dig(:base_params, :start_date).strftime('%b %d'),
graph_end_date: daily_coverage_options.dig(:base_params, :end_date).strftime('%b %d'),
graph_ref: ref,
graph_csv_path: start_with(daily_coverage_options.fetch(:download_path))
)
end
end
describe '#localized_project_human_access' do
using RSpec::Parameterized::TableSyntax
where(:key, :localized_project_human_access) do
Gitlab::Access::NO_ACCESS | _('No access')
Gitlab::Access::MINIMAL_ACCESS | _("Minimal Access")
Gitlab::Access::GUEST | _('Guest')
Gitlab::Access::REPORTER | _('Reporter')
Gitlab::Access::DEVELOPER | _('Developer')
Gitlab::Access::MAINTAINER | _('Maintainer')
Gitlab::Access::OWNER | _('Owner')
end
with_them do
it 'with correct key' do
expect(helper.localized_project_human_access(key)).to eq(localized_project_human_access)
end
end
end
describe '#vue_fork_divergence_data' do
it 'returns empty hash when fork source is not available' do
expect(helper.vue_fork_divergence_data(project, 'ref')).to eq({})
end
context 'when fork source is available' do
let_it_be(:fork_network) { create(:fork_network, root_project: project_with_repo) }
let_it_be(:source_project) { project_with_repo }
before_all do
project.fork_network = fork_network
project.add_developer(user)
source_project.add_developer(user)
end
it 'returns the data related to fork divergence' do
ahead_path =
"/#{project.full_path}/-/compare/#{source_project.default_branch}...ref?from_project_id=#{source_project.id}"
behind_path =
"/#{source_project.full_path}/-/compare/ref...#{source_project.default_branch}?from_project_id=#{project.id}"
create_mr_path = "/#{project.full_path}/-/merge_requests/new?merge_request%5Bsource_branch%5D=ref&merge_request%5Btarget_branch%5D=#{source_project.default_branch}&merge_request%5Btarget_project_id%5D=#{source_project.id}"
expect(helper.vue_fork_divergence_data(project, 'ref')).to eq({
project_path: project.full_path,
selected_branch: 'ref',
source_name: source_project.full_name,
source_path: project_path(source_project),
can_sync_branch: 'false',
ahead_compare_path: ahead_path,
behind_compare_path: behind_path,
source_default_branch: source_project.default_branch,
create_mr_path: create_mr_path,
view_mr_path: nil
})
end
it 'returns view_mr_path if a merge request for the branch exists' do
merge_request =
create(:merge_request, source_project: project, target_project: project_with_repo,
source_branch: project.default_branch, target_branch: project_with_repo.default_branch)
expect(helper.vue_fork_divergence_data(project, project.default_branch)).to include({
can_sync_branch: 'true',
create_mr_path: nil,
view_mr_path: "/#{source_project.full_path}/-/merge_requests/#{merge_request.iid}"
})
end
context 'when a user cannot create a merge request' do
using RSpec::Parameterized::TableSyntax
where(:project_role, :source_project_role) do
:guest | :developer
:developer | :guest
end
with_them do
it 'create_mr_path is nil' do
project.add_member(user, project_role)
source_project.add_member(user, source_project_role)
expect(helper.vue_fork_divergence_data(project, 'ref')).to include({
create_mr_path: nil, view_mr_path: nil
})
end
end
end
end
end
describe '#remote_mirror_setting_enabled?' do
it 'returns false' do
expect(helper.remote_mirror_setting_enabled?).to be_falsy
end
end
describe '#http_clone_url_to_repo' do
before do
allow(project).to receive(:http_url_to_repo).and_return('http_url_to_repo')
end
subject { helper.http_clone_url_to_repo(project) }
it { expect(subject).to eq('http_url_to_repo') }
end
describe '#ssh_clone_url_to_repo' do
before do
allow(project).to receive(:ssh_url_to_repo).and_return('ssh_url_to_repo')
end
subject { helper.ssh_clone_url_to_repo(project) }
it { expect(subject).to eq('ssh_url_to_repo') }
end
describe '#can_view_branch_rules?' do
subject { helper.can_view_branch_rules? }
context 'when user is a maintainer' do
before do
project.add_maintainer(user)
end
it { is_expected.to be_truthy }
end
context 'when user is a developer' do
before do
project.add_developer(user)
end
it { is_expected.to be_falsey }
end
end
describe '#can_push_code?' do
subject { helper.can_push_code? }
context 'when user is nil' do
let(:user) { nil }
it { is_expected.to be_falsey }
end
context 'when user is a developer on the project' do
before do
project.add_developer(user)
end
it { is_expected.to be_truthy }
end
context 'when user is a reporter on the project' do
before do
project.add_reporter(user)
end
it { is_expected.to be_falsey }
end
end
describe '#can_admin_associated_clusters?(project)' do
using RSpec::Parameterized::TableSyntax
where(:project_clusters_exist, :user_can_admin_project_clusters, :group_clusters_exist, :user_can_admin_group_clusters, :expected) do
false | false | false | false | false
true | false | false | false | false
false | true | false | false | false
false | false | true | false | false
false | false | false | true | false
true | true | false | false | true
false | false | true | true | true
true | true | true | true | true
end
with_them do
subject { helper.can_admin_associated_clusters?(project) }
let(:clusters) { [double('Cluster')] }
let(:group) { double('Group') }
before do
allow(project)
.to receive(:clusters)
.and_return(project_clusters_exist ? clusters : [])
allow(helper)
.to receive(:can?).with(user, :admin_cluster, project)
.and_return(user_can_admin_project_clusters)
allow(project)
.to receive(:group)
.and_return(group)
allow(group)
.to receive(:clusters)
.and_return(group_clusters_exist ? clusters : [])
allow(helper)
.to receive(:can?).with(user, :admin_cluster, project.group)
.and_return(user_can_admin_group_clusters)
end
it { is_expected.to eq(expected) }
end
end
describe '#branch_rules_path' do
subject { helper.branch_rules_path }
it { is_expected.to eq(project_settings_repository_path(project, anchor: 'js-branch-rules')) }
end
describe '#visibility_level_content' do
shared_examples 'returns visibility level content_tag' do
let(:icon) { '<svg>fake visib level icon</svg>'.html_safe }
let(:description) { 'Fake visib desc' }
before do
allow(helper).to receive(:visibility_icon_description).and_return(description)
allow(helper).to receive(:visibility_level_icon).and_return(icon)
end
it 'returns visibility level content_tag' do
expected_result = "<span class=\"has-tooltip\" data-container=\"body\" data-placement=\"top\" title=\"#{description}\">#{icon}</span>"
expect(helper.visibility_level_content(project)).to eq(expected_result)
end
it 'returns visibility level content_tag with extra CSS classes' do
expected_result = "<span class=\"has-tooltip extra-class\" data-container=\"body\" data-placement=\"top\" title=\"#{description}\">#{icon}</span>"
expect(helper).to receive(:visibility_level_icon)
.with(anything, options: { class: 'extra-icon-class' })
.and_return(icon)
result = helper.visibility_level_content(project, css_class: 'extra-class', icon_css_class: 'extra-icon-class')
expect(result).to eq(expected_result)
end
end
it_behaves_like 'returns visibility level content_tag'
context 'when project creator is banned' do
let(:hidden_resource_icon) { '<svg>fake hidden resource icon</svg>' }
before do
allow(project).to receive(:created_and_owned_by_banned_user?).and_return(true)
allow(helper).to receive(:hidden_resource_icon).and_return(hidden_resource_icon)
end
it 'returns hidden resource icon' do
expect(helper.visibility_level_content(project)).to eq hidden_resource_icon
end
end
context 'with hide_projects_of_banned_users feature flag disabled' do
before do
stub_feature_flags(hide_projects_of_banned_users: false)
end
it_behaves_like 'returns visibility level content_tag'
context 'when project creator is banned' do
before do
allow(project).to receive(:created_and_owned_by_banned_user?).and_return(true)
end
it_behaves_like 'returns visibility level content_tag'
end
end
end
describe '#hidden_issue_icon' do
let_it_be(:mock_svg) { '<svg></svg>'.html_safe }
before do
allow(helper).to receive(:hidden_resource_icon).with(resource).and_return(mock_svg)
end
context 'when issue is hidden' do
let_it_be(:banned_user) { build(:user, :banned) }
let_it_be(:resource) { build(:issue, author: banned_user) }
it 'returns icon with tooltip' do
expect(helper.hidden_issue_icon(resource)).to eq(mock_svg)
end
end
context 'when issue is not hidden' do
let_it_be(:resource) { build(:issue) }
it 'returns `nil`' do
expect(helper.hidden_issue_icon(resource)).to be_nil
end
end
end
describe '#issue_manual_ordering_class' do
context 'when sorting by relative position' do
before do
assign(:sort, 'relative_position')
end
it 'returns manual ordering class' do
expect(helper.issue_manual_ordering_class).to eq('manual-ordering')
end
context 'when manual sorting disabled' do
before do
allow(helper).to receive(:issue_repositioning_disabled?).and_return(true)
end
it 'returns nil' do
expect(helper.issue_manual_ordering_class).to eq(nil)
end
end
end
end
describe '#show_invalid_gpg_key_message?' do
subject { helper.show_invalid_gpg_key_message?(project) }
it { is_expected.to be_falsey }
context 'when beyond identity is disabled for a project' do
let_it_be(:integration) { create(:beyond_identity_integration, active: false) }
before do
allow(project).to receive(:beyond_identity_integration).and_return(integration)
end
it { is_expected.to be_falsey }
end
context 'when a GPG key failed external validation and one GPC key is externally validated' do
let_it_be(:integration) { create(:beyond_identity_integration) }
before do
allow(project).to receive(:beyond_identity_integration).and_return(integration)
create(:gpg_key, externally_verified: true, user: user)
create(:another_gpg_key, externally_verified: false, user: user)
end
it { is_expected.to be_falsey }
end
context 'when there are no GPG keys externally validated' do
let_it_be(:integration) { create(:beyond_identity_integration) }
before do
allow(project).to receive(:beyond_identity_integration).and_return(integration)
create(:gpg_key, externally_verified: false, user: user)
create(:another_gpg_key, externally_verified: false, user: user)
end
it { is_expected.to be_truthy }
end
context 'when GPG keys are missing' do
let_it_be(:integration) { create(:beyond_identity_integration) }
before do
allow(project).to receive(:beyond_identity_integration).and_return(integration)
end
it { is_expected.to be_truthy }
end
end
describe '#projects_filtered_search_and_sort_app_data' do
it 'returns expected json' do
expect(Gitlab::Json.parse(helper.projects_filtered_search_and_sort_app_data)).to eq(
{
'initial_sort' => 'created_desc',
'programming_languages' => ProgrammingLanguage.most_popular,
'paths_to_exclude_sort_on' => [starred_explore_projects_path, explore_root_path]
}
)
end
end
describe '#dashboard_projects_app_data' do
it 'returns expected json' do
expect(Gitlab::Json.parse(helper.dashboard_projects_app_data)).to eq(
{
'initial_sort' => 'created_desc',
'programming_languages' => ProgrammingLanguage.most_popular,
'empty_state_projects_svg_path' => helper.image_path('illustrations/empty-state/empty-projects-md.svg'),
'empty_state_search_svg_path' => helper.image_path('illustrations/empty-state/empty-search-md.svg')
}
)
end
end
describe '#show_dashboard_projects_welcome_page?' do
where(:request_path, :authorized_projects, :result) do
[
[:root_path, [], true],
[:root_dashboard_path, [], true],
[:dashboard_projects_path, [], true],
[:contributed_dashboard_projects_path, [], true],
[:root_path, [ref(:project)], false],
[:root_dashboard_path, [ref(:project)], false],
[:dashboard_projects_path, [ref(:project)], false],
[:contributed_dashboard_projects_path, [ref(:project)], false],
[:starred_dashboard_projects_path, [], false],
[:starred_dashboard_projects_path, [ref(:project)], false]
]
end
with_them do
let(:request) { instance_double(ActionDispatch::Request, path: helper.send(request_path)) }
before do
allow(helper).to receive(:request).and_return(request)
allow(user).to receive(:authorized_projects).and_return(authorized_projects)
end
it 'returns the correct boolean response' do
expect(helper.show_dashboard_projects_welcome_page?).to eq(result)
end
end
end
end
|