fix: tests yaml formatting
fix: command memory leak
This commit is contained in:
		
							parent
							
								
									10e41ca166
								
							
						
					
					
						commit
						dd98af4edc
					
				
					 5 changed files with 175 additions and 133 deletions
				
			
		| 
						 | 
					@ -74,6 +74,7 @@ command_set_relay_schedule(relay_t *relay)
 | 
				
			||||||
    int result = command_send(controller, COMMAND_CODE_SET_SCHEDULE, payload, payload_size);
 | 
					    int result = command_send(controller, COMMAND_CODE_SET_SCHEDULE, payload, payload_size);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    controller_free(controller);
 | 
					    controller_free(controller);
 | 
				
			||||||
 | 
					    free(payload);
 | 
				
			||||||
    return result;
 | 
					    return result;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -102,7 +103,11 @@ command_set_controller_name(controller_t *controller)
 | 
				
			||||||
        LOG_ERROR("an error occurred encoding the data");
 | 
					        LOG_ERROR("an error occurred encoding the data");
 | 
				
			||||||
        return 1;
 | 
					        return 1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return command_send(controller, COMMAND_CODE_SET_NAME, payload, payload_size);
 | 
					
 | 
				
			||||||
 | 
					    int result = command_send(controller, COMMAND_CODE_SET_NAME, payload, payload_size);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    free(payload);
 | 
				
			||||||
 | 
					    return result;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
int
 | 
					int
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,6 @@ stages:
 | 
				
			||||||
    status_code: 200
 | 
					    status_code: 200
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- name: "[test_get_all] get all relays"
 | 
					- name: "[test_get_all] get all relays"
 | 
				
			||||||
      skip: True
 | 
					 | 
				
			||||||
  request:
 | 
					  request:
 | 
				
			||||||
    url: "http://localhost:5000/api/v1/relays/"
 | 
					    url: "http://localhost:5000/api/v1/relays/"
 | 
				
			||||||
    method: GET
 | 
					    method: GET
 | 
				
			||||||
| 
						 | 
					@ -17,7 +16,6 @@ stages:
 | 
				
			||||||
    status_code: 200
 | 
					    status_code: 200
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- name: "[test_get_all] get all controllers"
 | 
					- name: "[test_get_all] get all controllers"
 | 
				
			||||||
      skip: True
 | 
					 | 
				
			||||||
  request:
 | 
					  request:
 | 
				
			||||||
    url: "http://localhost:5000/api/v1/controllers/"
 | 
					    url: "http://localhost:5000/api/v1/controllers/"
 | 
				
			||||||
    method: GET
 | 
					    method: GET
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
test_name: Test basic requests
 | 
					test_name: Test basic schedule requests
 | 
				
			||||||
 | 
					
 | 
				
			||||||
stages:
 | 
					stages:
 | 
				
			||||||
- name: "[test_schedules_basic] Make sure we get any response"
 | 
					- name: "[test_schedules_basic] Make sure we get any response"
 | 
				
			||||||
| 
						 | 
					@ -14,12 +14,12 @@ stages:
 | 
				
			||||||
    json:
 | 
					    json:
 | 
				
			||||||
      name: "hello"
 | 
					      name: "hello"
 | 
				
			||||||
      periods:
 | 
					      periods:
 | 
				
			||||||
                - start: '00:10'
 | 
					      - start: "00:10"
 | 
				
			||||||
                  end: '00:20'
 | 
					        end: "00:20"
 | 
				
			||||||
                - start: '00:30'
 | 
					      - start: "00:30"
 | 
				
			||||||
                  end: '00:40'
 | 
					        end: "00:40"
 | 
				
			||||||
                - start: '00:50'
 | 
					      - start: "00:50"
 | 
				
			||||||
                  end: '01:00'
 | 
					        end: "01:00"
 | 
				
			||||||
  response:
 | 
					  response:
 | 
				
			||||||
    status_code: 201
 | 
					    status_code: 201
 | 
				
			||||||
    body:
 | 
					    body:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
test_name: Test basic requests
 | 
					test_name: Test protected schedules requests
 | 
				
			||||||
 | 
					
 | 
				
			||||||
stages:
 | 
					stages:
 | 
				
			||||||
- name: "[test_schedules_protected] delete protected off schedule; expect forbidden/fail"
 | 
					- name: "[test_schedules_protected] delete protected off schedule; expect forbidden/fail"
 | 
				
			||||||
| 
						 | 
					@ -30,7 +30,6 @@ stages:
 | 
				
			||||||
    body:
 | 
					    body:
 | 
				
			||||||
      name: "{tavern.request_vars.json.name}"
 | 
					      name: "{tavern.request_vars.json.name}"
 | 
				
			||||||
      periods: []
 | 
					      periods: []
 | 
				
			||||||
 | 
					 | 
				
			||||||
- name: "[test_schedules_protected] delete protected on schedule; expect forbidden/fail"
 | 
					- name: "[test_schedules_protected] delete protected on schedule; expect forbidden/fail"
 | 
				
			||||||
  request:
 | 
					  request:
 | 
				
			||||||
    method: DELETE
 | 
					    method: DELETE
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										40
									
								
								tests/test_tags.tavern.yaml
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								tests/test_tags.tavern.yaml
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,40 @@
 | 
				
			||||||
 | 
					test_name: Test tagging of schedules and relays
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					stages:
 | 
				
			||||||
 | 
					- name: "[test_tags] post schedule, expect it to be echoed back by tag"
 | 
				
			||||||
 | 
					  request:
 | 
				
			||||||
 | 
					    method: POST
 | 
				
			||||||
 | 
					    url: "http://localhost:5000/api/v1/schedules/"
 | 
				
			||||||
 | 
					    json:
 | 
				
			||||||
 | 
					      name: "test tagging schedule"
 | 
				
			||||||
 | 
					      periods:
 | 
				
			||||||
 | 
					      - start: "00:50"
 | 
				
			||||||
 | 
					        end: "01:00"
 | 
				
			||||||
 | 
					      tags:
 | 
				
			||||||
 | 
					      - "test_tag_1"
 | 
				
			||||||
 | 
					  response:
 | 
				
			||||||
 | 
					    status_code: 201
 | 
				
			||||||
 | 
					    body:
 | 
				
			||||||
 | 
					      id: !anystr
 | 
				
			||||||
 | 
					      name: "{tavern.request_vars.json.name}"
 | 
				
			||||||
 | 
					      periods:
 | 
				
			||||||
 | 
					      - start: "00:50"
 | 
				
			||||||
 | 
					        end: "01:00"
 | 
				
			||||||
 | 
					      tags:
 | 
				
			||||||
 | 
					        - "{tavern.request_vars.json.tags[0]}"
 | 
				
			||||||
 | 
					    save:
 | 
				
			||||||
 | 
					      body:
 | 
				
			||||||
 | 
					        returned_name: name
 | 
				
			||||||
 | 
					        returned_id: id
 | 
				
			||||||
 | 
					- name: "[test_tags] get schedule, check name and some periods"
 | 
				
			||||||
 | 
					  request:
 | 
				
			||||||
 | 
					    method: GET
 | 
				
			||||||
 | 
					    url: "http://localhost:5000/api/v1/schedules/tag/test_tag_1"
 | 
				
			||||||
 | 
					  response:
 | 
				
			||||||
 | 
					    status_code: 200
 | 
				
			||||||
 | 
					    body:
 | 
				
			||||||
 | 
					    - name: "{returned_name}"
 | 
				
			||||||
 | 
					      id: "{returned_id}"
 | 
				
			||||||
 | 
					      periods:
 | 
				
			||||||
 | 
					      - start: "00:50"
 | 
				
			||||||
 | 
					        end: "01:00"
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue