mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Extend and consolidate script tests (#6663)
				
					
				
			This commit is contained in:
		
							
								
								
									
										55
									
								
								tests/components/script/common.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								tests/components/script/common.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| esphome: | ||||
|   on_boot: | ||||
|     then: | ||||
|       - script.execute: my_script | ||||
|       - script.execute: | ||||
|           id: my_script_with_params | ||||
|           prefix: "Test" | ||||
|           param2: 0 | ||||
|           param3: true | ||||
|       - script.wait: my_script | ||||
|       - script.stop: my_script | ||||
|       - if: | ||||
|           condition: | ||||
|             - script.is_running: my_script | ||||
|           then: | ||||
|             - logger.log: my_script is running | ||||
|  | ||||
| script: | ||||
|   - id: my_script | ||||
|     mode: single | ||||
|     then: | ||||
|       - lambda: 'ESP_LOGD("main", "Hello World!");' | ||||
|   - id: my_script_queued | ||||
|     mode: queued | ||||
|     max_runs: 2 | ||||
|     then: | ||||
|       - lambda: 'ESP_LOGD("main", "Hello World!");' | ||||
|   - id: my_script_parallel | ||||
|     mode: parallel | ||||
|     max_runs: 2 | ||||
|     then: | ||||
|       - lambda: 'ESP_LOGD("main", "Hello World!");' | ||||
|   - id: my_script_restart | ||||
|     mode: restart | ||||
|     then: | ||||
|       - lambda: 'ESP_LOGD("main", "Hello World!");' | ||||
|   - id: my_script_with_params | ||||
|     parameters: | ||||
|       prefix: string | ||||
|       param2: uint8_t | ||||
|       param3: bool | ||||
|     then: | ||||
|       - lambda: 'ESP_LOGD(prefix.c_str(), "Hello World! %u %u", param2, param3);' | ||||
|       - if: | ||||
|           condition: | ||||
|             for: | ||||
|               time: !lambda "return param2;" | ||||
|               condition: | ||||
|                 script.is_running: my_script | ||||
|           then: | ||||
|             - lambda: 'ESP_LOGD("main", "API has stayed connected for at least %u minutes", param2);' | ||||
|       - repeat: | ||||
|           count: 5 | ||||
|           then: | ||||
|             - logger.log: looping! | ||||
		Reference in New Issue
	
	Block a user