ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HTTPServicesTest.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\DI;
20 
33 
47 {
51  private RequestFactory $mockRequestFactory;
55  private ResponseFactory $mockResponseFactory;
59  private CookieJarFactory $mockCookieJarFactory;
63  private ResponseSenderStrategy $mockSenderStrategy;
67  private DurationFactory $mockDurationFactory;
69 
70 
71  protected function setUp(): void
72  {
73  parent::setUp();
74  $this->mockRequestFactory = $this->getMockBuilder(RequestFactory::class)->getMock();
75 
76  $this->mockResponseFactory = $this->getMockBuilder(ResponseFactory::class)->getMock();
77 
78  $this->mockSenderStrategy = $this->getMockBuilder(ResponseSenderStrategy::class)->getMock();
79 
80  $this->mockCookieJarFactory = $this->getMockBuilder(CookieJarFactory::class)->getMock();
81 
82  $this->mockDurationFactory = $this->createMock(DurationFactory::class);
83 
84  $this->httpState = new RawHTTPServices($this->mockSenderStrategy, $this->mockCookieJarFactory, $this->mockRequestFactory, $this->mockResponseFactory, $this->mockDurationFactory);
85  }
86 
87 
92  {
93  $expectedRequest = $this->getMockBuilder(ServerRequestInterface::class)->getMock();
94  $wrongRequest = $this->getMockBuilder(ServerRequestInterface::class)->getMock();
95 
96  $this->mockRequestFactory->expects($this->once())
97  ->method('create')
98  ->willReturn($expectedRequest, $wrongRequest);
99 
100  //test method
101 
102  //this call should call the expectedRequest factory
103  $request1 = $this->httpState->request();
104 
105  //this call should not call the factory
106  $request2 = $this->httpState->request();
107 
108  //make sure that all requests are the same.
109  $this->assertEquals($expectedRequest, $request1);
110  $this->assertEquals($expectedRequest, $request2);
111  }
112 
113 
118  {
119  $expectedResponse = $this->getMockBuilder(ResponseInterface::class)->getMock();
120  $wrongResponse = $this->getMockBuilder(ResponseInterface::class)->getMock();
121 
122  $this->mockResponseFactory->expects($this->once())
123  ->method('create')
124  ->willReturn($expectedResponse, $wrongResponse);
125 
126  //test method
127 
128  //this call should call the expectedResponse factory
129  $response1 = $this->httpState->response();
130 
131  //this call should not call the factory
132  $response2 = $this->httpState->response();
133 
134  //make sure that all requests are the same.
135  $this->assertEquals($expectedResponse, $response1);
136  $this->assertEquals($expectedResponse, $response2);
137  }
138 }
ResponseSenderStrategy $mockSenderStrategy
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Container.php:19
DurationFactory $mockDurationFactory
RequestFactory $mockRequestFactory
CookieJarFactory $mockCookieJarFactory
ResponseFactory $mockResponseFactory