mirror of
				https://github.com/spring-projects/spring-security.git
				synced 2025-10-31 06:38:42 +00:00 
			
		
		
		
	
		
			
	
	
		
			28 lines
		
	
	
		
			554 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			554 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|  | = WebTestClient Security Setup | ||
|  | 
 | ||
|  | The basic setup looks like this: | ||
|  | 
 | ||
|  | [source,java] | ||
|  | ---- | ||
|  | @RunWith(SpringRunner.class) | ||
|  | @ContextConfiguration(classes = HelloWebfluxMethodApplication.class) | ||
|  | public class HelloWebfluxMethodApplicationTests { | ||
|  | 	@Autowired | ||
|  | 	ApplicationContext context; | ||
|  | 
 | ||
|  | 	WebTestClient rest; | ||
|  | 
 | ||
|  | 	@Before | ||
|  | 	public void setup() { | ||
|  | 		this.rest = WebTestClient | ||
|  | 			.bindToApplicationContext(this.context) | ||
|  | 			// add Spring Security test Support | ||
|  | 			.apply(springSecurity()) | ||
|  | 			.configureClient() | ||
|  | 			.filter(basicAuthentication()) | ||
|  | 			.build(); | ||
|  | 	} | ||
|  | 	// ... | ||
|  | } | ||
|  | ---- |