| 
									
										
										
										
											2015-09-16 10:00:38 -04:00
										 |  |  | import json | 
					
						
							| 
									
										
										
										
											2021-10-18 19:44:29 +00:00
										 |  |  | import sure  # noqa # pylint: disable=unused-import | 
					
						
							| 
									
										
										
										
											2015-09-16 10:00:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | import moto.server as server | 
					
						
							|  |  |  | from moto import mock_datapipeline | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2015-09-16 10:00:38 -04:00
										 |  |  | Test the different server responses | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2015-09-16 10:00:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @mock_datapipeline | 
					
						
							|  |  |  | def test_list_streams(): | 
					
						
							|  |  |  |     backend = server.create_backend_app("datapipeline") | 
					
						
							|  |  |  |     test_client = backend.test_client() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     res = test_client.post( | 
					
						
							|  |  |  |         "/", | 
					
						
							|  |  |  |         data={"pipelineIds": ["ASdf"]}, | 
					
						
							|  |  |  |         headers={"X-Amz-Target": "DataPipeline.DescribePipelines"}, | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2015-09-16 10:00:38 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     json_data = json.loads(res.data.decode("utf-8")) | 
					
						
							| 
									
										
										
										
											2019-10-31 08:44:26 -07:00
										 |  |  |     json_data.should.equal({"pipelineDescriptionList": []}) |