140 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* 
 | |
|  * The MIT License (MIT)
 | |
|  *
 | |
|  * Copyright (c) 2018, hathach (tinyusb.org)
 | |
|  *
 | |
|  * Permission is hereby granted, free of charge, to any person obtaining a copy
 | |
|  * of this software and associated documentation files (the "Software"), to deal
 | |
|  * in the Software without restriction, including without limitation the rights
 | |
|  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | |
|  * copies of the Software, and to permit persons to whom the Software is
 | |
|  * furnished to do so, subject to the following conditions:
 | |
|  *
 | |
|  * The above copyright notice and this permission notice shall be included in
 | |
|  * all copies or substantial portions of the Software.
 | |
|  *
 | |
|  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | |
|  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | |
|  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | |
|  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | |
|  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | |
|  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | |
|  * THE SOFTWARE.
 | |
|  *
 | |
|  * This file is part of the TinyUSB stack.
 | |
|  */
 | |
| 
 | |
| #include "stdlib.h"
 | |
| #include "unity.h"
 | |
| #include "tusb_option.h"
 | |
| #include "tusb_errors.h"
 | |
| #include "binary.h"
 | |
| #include "type_helper.h"
 | |
| 
 | |
| #include "descriptor_test.h"
 | |
| #include "mock_osal.h"
 | |
| #include "mock_hcd.h"
 | |
| #include "mock_usbh.h"
 | |
| 
 | |
| #include "mock_msch_callback.h"
 | |
| #include "msc_host.h"
 | |
| 
 | |
| extern msch_interface_t msch_data[CFG_TUSB_HOST_DEVICE_MAX];
 | |
| 
 | |
| static tusb_desc_interface_t const *p_msc_interface_desc = &desc_configuration.msc_interface;
 | |
| static tusb_desc_endpoint_t const *p_edp_in  = &desc_configuration.msc_endpoint_in;
 | |
| static tusb_desc_endpoint_t const *p_edp_out = &desc_configuration.msc_endpoint_out;
 | |
| 
 | |
| static msch_interface_t* p_msc;
 | |
| 
 | |
| static uint8_t dev_addr;
 | |
| static pipe_handle_t pipe_in, pipe_out;
 | |
| static pipe_handle_t const pipe_null = { 0 };
 | |
| static uint16_t length;
 | |
| 
 | |
| void setUp(void)
 | |
| {
 | |
|   dev_addr = RANDOM(CFG_TUSB_HOST_DEVICE_MAX)+1;
 | |
| 
 | |
|   osal_semaphore_create_IgnoreAndReturn( (osal_semaphore_handle_t) 0x1234);
 | |
|   msch_init();
 | |
|   TEST_ASSERT_MEM_ZERO(msch_data, sizeof(msch_interface_t)*CFG_TUSB_HOST_DEVICE_MAX);
 | |
| 
 | |
|   p_msc = &msch_data[dev_addr-1];
 | |
|   pipe_in  = (pipe_handle_t) {.dev_addr = dev_addr, .xfer_type = TUSB_XFER_BULK, .index = 1};
 | |
|   pipe_out = (pipe_handle_t) {.dev_addr = dev_addr, .xfer_type = TUSB_XFER_BULK, .index = 2};
 | |
| }
 | |
| 
 | |
| void tearDown(void)
 | |
| {
 | |
|   length = 0;
 | |
| }
 | |
| 
 | |
| void test_open_pipe_in_failed(void)
 | |
| {
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_in, TUSB_CLASS_MSC, pipe_null);
 | |
| 
 | |
|   TEST_ASSERT(TUSB_ERROR_NONE != msch_open(dev_addr, p_msc_interface_desc, &length));
 | |
| }
 | |
| 
 | |
| void test_open_pipe_out_failed(void)
 | |
| {
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_in, TUSB_CLASS_MSC, (pipe_handle_t) {1} );
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_out, TUSB_CLASS_MSC, pipe_null);
 | |
| 
 | |
|   TEST_ASSERT(TUSB_ERROR_NONE != msch_open(dev_addr, p_msc_interface_desc, &length));
 | |
| }
 | |
| 
 | |
| tusb_error_t stub_control_xfer(uint8_t dev_addr, uint8_t bmRequestType, uint8_t bRequest,
 | |
|                                uint16_t wValue, uint16_t wIndex, uint16_t wLength, uint8_t* data, int num_call)
 | |
| {
 | |
|   switch ( num_call )
 | |
|   {
 | |
|     case 0: // get max lun
 | |
|       TEST_ASSERT_EQUAL(bm_request_type(TUSB_DIR_DEV_TO_HOST, TUSB_REQ_TYPE_CLASS, TUSB_REQ_RECIPIENT_INTERFACE),
 | |
|                         bmRequestType);
 | |
|       TEST_ASSERT_EQUAL(MSC_REQ_GET_MAX_LUN, bRequest);
 | |
|       TEST_ASSERT_EQUAL(p_msc_interface_desc->bInterfaceNumber, wIndex);
 | |
|       TEST_ASSERT_EQUAL(1, wLength);
 | |
|       *data = 1; // TODO multiple LUN support
 | |
|     break;
 | |
| 
 | |
|     default:
 | |
|       TEST_FAIL();
 | |
|       return TUSB_ERROR_FAILED;
 | |
|   }
 | |
| 
 | |
|   return TUSB_ERROR_NONE;
 | |
| }
 | |
| #if 0 // TODO TEST enable this
 | |
| void test_open_desc_length(void)
 | |
| {
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_in, TUSB_CLASS_MSC, pipe_in);
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_out, TUSB_CLASS_MSC, pipe_out);
 | |
| 
 | |
|   usbh_control_xfer_subtask_IgnoreAndReturn(TUSB_ERROR_NONE);
 | |
|   hcd_pipe_xfer_IgnoreAndReturn(TUSB_ERROR_NONE);
 | |
|   hcd_pipe_queue_xfer_IgnoreAndReturn(TUSB_ERROR_NONE);
 | |
| 
 | |
|   //------------- Code Under Test -------------//
 | |
|   TEST_ASSERT_STATUS( msch_open(dev_addr, p_msc_interface_desc, &length) );
 | |
| 
 | |
|   TEST_ASSERT_EQUAL(sizeof(tusb_desc_interface_t) + 2*sizeof(tusb_desc_endpoint_t),
 | |
|                     length);
 | |
| }
 | |
| 
 | |
| void test_open_ok(void)
 | |
| {
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_in, TUSB_CLASS_MSC, pipe_in);
 | |
|   hcd_edpt_open_ExpectAndReturn(dev_addr, p_edp_out, TUSB_CLASS_MSC, pipe_out);
 | |
| 
 | |
|   //------------- get max lun -------------//
 | |
|   usbh_control_xfer_subtask_StubWithCallback(stub_control_xfer);
 | |
| 
 | |
|   //------------- Code Under Test -------------//
 | |
|   TEST_ASSERT_STATUS( msch_open(dev_addr, p_msc_interface_desc, &length) );
 | |
| 
 | |
|   TEST_ASSERT_EQUAL(p_msc_interface_desc->bInterfaceNumber, p_msc->interface_number);
 | |
| }
 | |
| #endif
 | 
