1 /* This tests the case where there are no endpoints. Specific test case is in
2    ux_host_class_hub_interrupt_endpoint_start.c. */
3 
4 #include "usbx_ux_test_hub.h"
5 
6 static unsigned char framework_no_endpoints_test[] = {
7 
8     /* Device Descriptor */
9     0x12, /* bLength */
10     0x01, /* bDescriptorType */
11     0x00, 0x02, /* bcdUSB */
12     0x09, /* bDeviceClass - Hub */
13     0x00, /* bDeviceSubClass */
14     0x01, /* bDeviceProtocol - multiple TTs */
15     0x40, /* bMaxPacketSize0 */
16     0x24, 0x04, /* idVendor */
17     0x12, 0x24, /* idProduct */
18     0xb2, 0x0b, /* bcdDevice */
19     0x00, /* iManufacturer */
20     0x00, /* iProduct */
21     0x00, /* iSerialNumber */
22     0x01, /* bNumConfigurations */
23 
24     /* Configuration Descriptor */
25     0x09, /* bLength */
26     0x02, /* bDescriptorType */
27     0x12, 0x00, /* wTotalLength */
28     0x01, /* bNumInterfaces */
29     0x01, /* bConfigurationValue */
30     0x00, /* iConfiguration */
31     0xe0, /* bmAttributes - Self-powered */
32     0x01, /* bMaxPower */
33 
34     /* Interface Descriptor */
35     0x09, /* bLength */
36     0x04, /* bDescriptorType */
37     0x00, /* bInterfaceNumber */
38     0x00, /* bAlternateSetting */
39     0x00, /* bNumEndpoints */
40     0x09, /* bInterfaceClass - Hub */
41     0x00, /* bInterfaceSubClass */
42     0x00, /* bInterfaceProtocol */
43     0x00, /* iInterface */
44 
45 };
46 
47 static DEVICE_INIT_DATA device_init_data = {
48     .dont_enumerate = 1,
49     .framework = framework_no_endpoints_test,
50     .framework_length = sizeof(framework_no_endpoints_test),
51 };
52 
53 #ifdef CTEST
test_application_define(void * first_unused_memory)54 void test_application_define(void *first_unused_memory)
55 #else
56 void usbx_hub_no_endpoints_test_application_define(void *first_unused_memory)
57 #endif
58 {
59 
60     /* Inform user.  */
61     printf("Running Hub No Endpoints Test....................................... ");
62 
63     stepinfo("\n");
64 
65     initialize_hub_with_device_init_data(first_unused_memory, &device_init_data);
66 }
67 
post_init_host()68 static void post_init_host()
69 {
70 
71     ux_test_add_action_to_main_list_multiple(create_error_match_action(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_ENUMERATOR, UX_ENDPOINT_HANDLE_UNKNOWN), 3);
72     ux_test_add_action_to_main_list(create_error_match_action(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_ROOT_HUB, UX_DEVICE_ENUMERATION_FAILURE));
73 
74     UX_TEST_CHECK_SUCCESS(ux_host_stack_hcd_register(_ux_system_host_hcd_simulator_name, _ux_test_hcd_sim_host_initialize, 0, 0));
75     ux_test_wait_for_enum_thread_completion();
76 
77     UX_TEST_ASSERT(ux_test_check_actions_empty() == UX_TRUE);
78 }
79 
post_init_device()80 static void post_init_device()
81 {
82 }