@@ -1614,6 +1614,10 @@ void objectProviderInjectionWithPrototype() {
1614
1614
assertThat (testBeans ).containsExactly (bf .getBean ("testBean1" , TestBean .class ), bf .getBean ("testBean2" , TestBean .class ));
1615
1615
testBeans = bean .allTestBeansInOrder ();
1616
1616
assertThat (testBeans ).containsExactly (bf .getBean ("testBean1" , TestBean .class ), bf .getBean ("testBean2" , TestBean .class ));
1617
+ testBeans = bean .allSingletonBeans ();
1618
+ assertThat (testBeans ).isEmpty ();
1619
+ testBeans = bean .allSingletonBeansInOrder ();
1620
+ assertThat (testBeans ).isEmpty ();
1617
1621
}
1618
1622
1619
1623
@ Test
@@ -1648,6 +1652,12 @@ void objectProviderInjectionWithSingletonTarget() {
1648
1652
testBeans = bean .allTestBeansInOrder ();
1649
1653
assertThat (testBeans ).hasSize (1 );
1650
1654
assertThat (testBeans ).contains (bf .getBean ("testBean" , TestBean .class ));
1655
+ testBeans = bean .allSingletonBeans ();
1656
+ assertThat (testBeans ).hasSize (1 );
1657
+ assertThat (testBeans ).contains (bf .getBean ("testBean" , TestBean .class ));
1658
+ testBeans = bean .allSingletonBeansInOrder ();
1659
+ assertThat (testBeans ).hasSize (1 );
1660
+ assertThat (testBeans ).contains (bf .getBean ("testBean" , TestBean .class ));
1651
1661
}
1652
1662
1653
1663
@ Test
@@ -1675,6 +1685,10 @@ void objectProviderInjectionWithTargetNotAvailable() {
1675
1685
assertThat (testBeans ).isEmpty ();
1676
1686
testBeans = bean .allTestBeansInOrder ();
1677
1687
assertThat (testBeans ).isEmpty ();
1688
+ testBeans = bean .allSingletonBeans ();
1689
+ assertThat (testBeans ).isEmpty ();
1690
+ testBeans = bean .allSingletonBeansInOrder ();
1691
+ assertThat (testBeans ).isEmpty ();
1678
1692
}
1679
1693
1680
1694
@ Test
@@ -1698,6 +1712,8 @@ void objectProviderInjectionWithTargetNotUnique() {
1698
1712
assertThat (bean .streamTestBeansInOrder ()).containsExactly (testBean1 , testBean2 );
1699
1713
assertThat (bean .allTestBeans ()).containsExactly (testBean1 , testBean2 );
1700
1714
assertThat (bean .allTestBeansInOrder ()).containsExactly (testBean1 , testBean2 );
1715
+ assertThat (bean .allSingletonBeans ()).containsExactly (testBean1 , testBean2 );
1716
+ assertThat (bean .allSingletonBeansInOrder ()).containsExactly (testBean1 , testBean2 );
1701
1717
}
1702
1718
1703
1719
@ Test
@@ -1728,6 +1744,8 @@ void objectProviderInjectionWithTargetPrimary() {
1728
1744
assertThat (bean .streamTestBeansInOrder ()).containsExactly (testBean2 , testBean1 );
1729
1745
assertThat (bean .allTestBeans ()).containsExactly (testBean1 , testBean2 );
1730
1746
assertThat (bean .allTestBeansInOrder ()).containsExactly (testBean2 , testBean1 );
1747
+ assertThat (bean .allSingletonBeans ()).containsExactly (testBean1 , testBean2 );
1748
+ assertThat (bean .allSingletonBeansInOrder ()).containsExactly (testBean2 , testBean1 );
1731
1749
}
1732
1750
1733
1751
@ Test
@@ -1739,14 +1757,15 @@ void objectProviderInjectionWithUnresolvedOrderedStream() {
1739
1757
bf .registerBeanDefinition ("testBean1" , tb1 );
1740
1758
RootBeanDefinition tb2 = new RootBeanDefinition (TestBeanFactory .class );
1741
1759
tb2 .setFactoryMethodName ("newTestBean2" );
1742
- tb2 .setLazyInit ( true );
1760
+ tb2 .setScope ( BeanDefinition . SCOPE_PROTOTYPE );
1743
1761
bf .registerBeanDefinition ("testBean2" , tb2 );
1744
1762
1745
1763
ObjectProviderInjectionBean bean = bf .getBean ("annotatedBean" , ObjectProviderInjectionBean .class );
1746
1764
assertThat (bean .streamTestBeansInOrder ()).containsExactly (bf .getBean ("testBean2" , TestBean .class ),
1747
1765
bf .getBean ("testBean1" , TestBean .class ));
1748
1766
assertThat (bean .allTestBeansInOrder ()).containsExactly (bf .getBean ("testBean2" , TestBean .class ),
1749
1767
bf .getBean ("testBean1" , TestBean .class ));
1768
+ assertThat (bean .allSingletonBeansInOrder ()).containsExactly (bf .getBean ("testBean1" , TestBean .class ));
1750
1769
}
1751
1770
1752
1771
@ Test
@@ -1757,6 +1776,7 @@ void objectProviderInjectionWithNonCandidatesInStream() {
1757
1776
bf .registerBeanDefinition ("testBean1" , tb1 );
1758
1777
RootBeanDefinition tb2 = new RootBeanDefinition (TestBeanFactory .class );
1759
1778
tb2 .setFactoryMethodName ("newTestBean2" );
1779
+ tb2 .setScope (BeanDefinition .SCOPE_PROTOTYPE );
1760
1780
bf .registerBeanDefinition ("testBean2" , tb2 );
1761
1781
1762
1782
DefaultListableBeanFactory parent = new DefaultListableBeanFactory ();
@@ -1789,6 +1809,10 @@ void objectProviderInjectionWithNonCandidatesInStream() {
1789
1809
bf .getBean ("testBean2" , TestBean .class ), bf .getBean ("testBean4" , TestBean .class ));
1790
1810
assertThat (bean .allTestBeansInOrder ()).containsExactly (bf .getBean ("testBean2" , TestBean .class ),
1791
1811
bf .getBean ("testBean1" , TestBean .class ), bf .getBean ("testBean4" , TestBean .class ));
1812
+ assertThat (bean .allSingletonBeans ()).containsExactly (bf .getBean ("testBean1" , TestBean .class ),
1813
+ bf .getBean ("testBean4" , TestBean .class ));
1814
+ assertThat (bean .allSingletonBeansInOrder ()).containsExactly (bf .getBean ("testBean1" , TestBean .class ),
1815
+ bf .getBean ("testBean4" , TestBean .class ));
1792
1816
1793
1817
Map <String , TestBean > typeMatches = BeanFactoryUtils .beansOfTypeIncludingAncestors (bf , TestBean .class );
1794
1818
assertThat (typeMatches .remove ("testBean3" )).isNotNull ();
@@ -2370,7 +2394,7 @@ void genericsBasedConstructorInjection() {
2370
2394
}
2371
2395
2372
2396
@ Test
2373
- @ SuppressWarnings ({ "rawtypes" , " unchecked" } )
2397
+ @ SuppressWarnings (" unchecked" )
2374
2398
void genericsBasedConstructorInjectionWithNonTypedTarget () {
2375
2399
RootBeanDefinition bd = new RootBeanDefinition (RepositoryConstructorInjectionBean .class );
2376
2400
bd .setScope (BeanDefinition .SCOPE_PROTOTYPE );
@@ -3393,6 +3417,14 @@ public List<TestBean> allTestBeans() {
3393
3417
public List <TestBean > allTestBeansInOrder () {
3394
3418
return this .testBean .orderedStream (ObjectProvider .UNFILTERED ).toList ();
3395
3419
}
3420
+
3421
+ public List <TestBean > allSingletonBeans () {
3422
+ return this .testBean .stream (ObjectProvider .UNFILTERED , false ).toList ();
3423
+ }
3424
+
3425
+ public List <TestBean > allSingletonBeansInOrder () {
3426
+ return this .testBean .orderedStream (ObjectProvider .UNFILTERED , false ).toList ();
3427
+ }
3396
3428
}
3397
3429
3398
3430
0 commit comments