|
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __CHEADERDECODE_H__ |
|
17 #define __CHEADERDECODE_H__ |
|
18 |
|
19 #include <e32base.h> |
|
20 #include <http.h> |
|
21 |
|
22 #include "CPipeliningTestCase.h" |
|
23 |
|
24 class CHTTPTestUtils; |
|
25 |
|
26 /* |
|
27 Test case for the following defects: |
|
28 DEF041101 - HTTP Codec cannot handle Server sending back two Content-Length header fields |
|
29 INC040893 - Nokia 6600 sends incorrect parameter in Accept-Language HTTP header when Finnish |
|
30 */ |
|
31 class CHeaderDecode : public CPipeliningTestCase |
|
32 { |
|
33 public: |
|
34 static CHeaderDecode* NewL(CHTTPTestUtils& aTestUtils); |
|
35 ~CHeaderDecode(); |
|
36 |
|
37 private: |
|
38 CHeaderDecode(CHTTPTestUtils& aTestUtils); |
|
39 void ConstructL(); |
|
40 |
|
41 // From MPipeliningTestCase |
|
42 const TDesC& TestCaseName() const; |
|
43 TInt TotalTransactionCount() const; |
|
44 RHTTPTransaction GetTransactionL(TInt aIndex, RHTTPSession aSession, MHTTPTransactionCallback& aClient); |
|
45 const TDesC8& GetRawRequest(TInt aConnectionIndex, TInt aTransIndex); |
|
46 const TDesC8& GetRawResponse(TInt aConnectionIndex, TInt aTransIndex); |
|
47 TInt ConnectionCount() const; |
|
48 void ProcessHeadersL(RHTTPTransaction aTrans); |
|
49 |
|
50 private: |
|
51 CHTTPTestUtils& iTestUtils; |
|
52 }; |
|
53 |
|
54 #endif // __CHEADERDECODE_H__ |