@@ -1422,11 +1422,11 @@ test('stale issues should not be closed until after the closed number of days (l
1422
1422
expect ( processor . staleIssues ) . toHaveLength ( 1 ) ;
1423
1423
} ) ;
1424
1424
1425
- test ( 'skips stale message on issues when skip- stale-issue-message is set ' , async ( ) => {
1425
+ test ( 'skips stale message on issues when stale-issue-message is empty ' , async ( ) => {
1426
1426
const opts = { ...DefaultProcessorOptions } ;
1427
1427
opts . daysBeforeStale = 5 ; // stale after 5 days
1428
1428
opts . daysBeforeClose = 20 ; // closes after 25 days
1429
- opts . skipStaleIssueMessage = true ;
1429
+ opts . staleIssueMessage = '' ;
1430
1430
const lastUpdate = new Date ( ) ;
1431
1431
lastUpdate . setDate ( lastUpdate . getDate ( ) - 10 ) ;
1432
1432
const TestIssueList : Issue [ ] = [
@@ -1467,11 +1467,11 @@ test('skips stale message on issues when skip-stale-issue-message is set', async
1467
1467
) ;
1468
1468
} ) ;
1469
1469
1470
- test ( 'skips stale message on prs when skip- stale-pr -message is set ' , async ( ) => {
1470
+ test ( 'send stale message on issues when stale-issue -message is not empty ' , async ( ) => {
1471
1471
const opts = { ...DefaultProcessorOptions } ;
1472
1472
opts . daysBeforeStale = 5 ; // stale after 5 days
1473
1473
opts . daysBeforeClose = 20 ; // closes after 25 days
1474
- opts . skipStalePrMessage = true ;
1474
+ opts . staleIssueMessage = 'dummy issue message' ;
1475
1475
const lastUpdate = new Date ( ) ;
1476
1476
lastUpdate . setDate ( lastUpdate . getDate ( ) - 10 ) ;
1477
1477
const TestIssueList : Issue [ ] = [
@@ -1481,7 +1481,7 @@ test('skips stale message on prs when skip-stale-pr-message is set', async () =>
1481
1481
'An issue that should be marked stale but not closed' ,
1482
1482
lastUpdate . toString ( ) ,
1483
1483
lastUpdate . toString ( ) ,
1484
- true
1484
+ false
1485
1485
)
1486
1486
] ;
1487
1487
const processor = new IssuesProcessorMock (
@@ -1505,19 +1505,18 @@ test('skips stale message on prs when skip-stale-pr-message is set', async () =>
1505
1505
// comment should not be created
1506
1506
expect ( markSpy ) . toHaveBeenCalledWith (
1507
1507
TestIssueList [ 0 ] ,
1508
- opts . stalePrMessage ,
1509
- opts . stalePrLabel ,
1508
+ opts . staleIssueMessage ,
1509
+ opts . staleIssueLabel ,
1510
1510
// this option is skipMessage
1511
- true
1511
+ false
1512
1512
) ;
1513
1513
} ) ;
1514
1514
1515
- test ( 'not providing state takes precedence over skipStaleIssueMessage ' , async ( ) => {
1515
+ test ( 'skips stale message on prs when stale-pr-message is empty ' , async ( ) => {
1516
1516
const opts = { ...DefaultProcessorOptions } ;
1517
1517
opts . daysBeforeStale = 5 ; // stale after 5 days
1518
1518
opts . daysBeforeClose = 20 ; // closes after 25 days
1519
- opts . skipStalePrMessage = true ;
1520
- opts . staleIssueMessage = '' ;
1519
+ opts . stalePrMessage = '' ;
1521
1520
const lastUpdate = new Date ( ) ;
1522
1521
lastUpdate . setDate ( lastUpdate . getDate ( ) - 10 ) ;
1523
1522
const TestIssueList : Issue [ ] = [
@@ -1527,7 +1526,7 @@ test('not providing state takes precedence over skipStaleIssueMessage', async ()
1527
1526
'An issue that should be marked stale but not closed' ,
1528
1527
lastUpdate . toString ( ) ,
1529
1528
lastUpdate . toString ( ) ,
1530
- false
1529
+ true
1531
1530
)
1532
1531
] ;
1533
1532
const processor = new IssuesProcessorMock (
@@ -1538,20 +1537,31 @@ test('not providing state takes precedence over skipStaleIssueMessage', async ()
1538
1537
async ( ) => new Date ( ) . toDateString ( )
1539
1538
) ;
1540
1539
1540
+ // for sake of testing, mocking private function
1541
+ const markSpy = jest . spyOn ( processor as any , '_markStale' ) ;
1542
+
1541
1543
await processor . processIssues ( 1 ) ;
1542
1544
1543
1545
// issue should be staled
1544
1546
expect ( processor . closedIssues ) . toHaveLength ( 0 ) ;
1545
1547
expect ( processor . removedLabelIssues ) . toHaveLength ( 0 ) ;
1546
- expect ( processor . staleIssues ) . toHaveLength ( 0 ) ;
1548
+ expect ( processor . staleIssues ) . toHaveLength ( 1 ) ;
1549
+
1550
+ // comment should not be created
1551
+ expect ( markSpy ) . toHaveBeenCalledWith (
1552
+ TestIssueList [ 0 ] ,
1553
+ opts . stalePrMessage ,
1554
+ opts . stalePrLabel ,
1555
+ // this option is skipMessage
1556
+ true
1557
+ ) ;
1547
1558
} ) ;
1548
1559
1549
- test ( 'not providing stalePrMessage takes precedence over skipStalePrMessage ' , async ( ) => {
1560
+ test ( 'send stale message on prs when stale-pr-message is not empty ' , async ( ) => {
1550
1561
const opts = { ...DefaultProcessorOptions } ;
1551
1562
opts . daysBeforeStale = 5 ; // stale after 5 days
1552
1563
opts . daysBeforeClose = 20 ; // closes after 25 days
1553
- opts . skipStalePrMessage = true ;
1554
- opts . stalePrMessage = '' ;
1564
+ opts . stalePrMessage = 'dummy pr message' ;
1555
1565
const lastUpdate = new Date ( ) ;
1556
1566
lastUpdate . setDate ( lastUpdate . getDate ( ) - 10 ) ;
1557
1567
const TestIssueList : Issue [ ] = [
@@ -1572,12 +1582,24 @@ test('not providing stalePrMessage takes precedence over skipStalePrMessage', as
1572
1582
async ( ) => new Date ( ) . toDateString ( )
1573
1583
) ;
1574
1584
1585
+ // for sake of testing, mocking private function
1586
+ const markSpy = jest . spyOn ( processor as any , '_markStale' ) ;
1587
+
1575
1588
await processor . processIssues ( 1 ) ;
1576
1589
1577
1590
// issue should be staled
1578
1591
expect ( processor . closedIssues ) . toHaveLength ( 0 ) ;
1579
1592
expect ( processor . removedLabelIssues ) . toHaveLength ( 0 ) ;
1580
- expect ( processor . staleIssues ) . toHaveLength ( 0 ) ;
1593
+ expect ( processor . staleIssues ) . toHaveLength ( 1 ) ;
1594
+
1595
+ // comment should not be created
1596
+ expect ( markSpy ) . toHaveBeenCalledWith (
1597
+ TestIssueList [ 0 ] ,
1598
+ opts . stalePrMessage ,
1599
+ opts . stalePrLabel ,
1600
+ // this option is skipMessage
1601
+ false
1602
+ ) ;
1581
1603
} ) ;
1582
1604
1583
1605
test ( 'git branch is deleted when option is enabled' , async ( ) => {
0 commit comments