1//
2// HTTPSClientSessionTest.h
3//
4// Definition of the HTTPSClientSessionTest class.
5//
6// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef HTTPSClientSessionTest_INCLUDED
14#define HTTPSClientSessionTest_INCLUDED
15
16
17#include "Poco/Net/Net.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class HTTPSClientSessionTest: public CppUnit::TestCase
22{
23public:
24 HTTPSClientSessionTest(const std::string& name);
25 ~HTTPSClientSessionTest();
26
27 void testGetSmall();
28 void testGetLarge();
29 void testHead();
30 void testPostSmallIdentity();
31 void testPostLargeIdentity();
32 void testPostSmallChunked();
33 void testPostLargeChunked();
34 void testPostLargeChunkedKeepAlive();
35 void testKeepAlive();
36 void testInterop();
37 void testProxy();
38 void testCachedSession();
39 void testUnknownContentLength();
40 void testServerAbort();
41
42
43 void setUp();
44 void tearDown();
45
46 static CppUnit::Test* suite();
47
48private:
49};
50
51
52#endif // HTTPSClientSessionTest_INCLUDED
53