-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
1,227 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
.../src/test/java/com/microsoft/thrifty/integration/conformance/JsonProtocolConformance.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Thrifty | ||
* | ||
* Copyright (c) Microsoft Corporation | ||
* | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the License); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING | ||
* WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, | ||
* FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. | ||
* | ||
* See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. | ||
*/ | ||
package com.microsoft.thrifty.integration.conformance; | ||
|
||
import com.microsoft.thrifty.protocol.JsonProtocol; | ||
import com.microsoft.thrifty.protocol.Protocol; | ||
import com.microsoft.thrifty.testing.ServerProtocol; | ||
import com.microsoft.thrifty.testing.ServerTransport; | ||
import com.microsoft.thrifty.transport.Transport; | ||
|
||
public class JsonProtocolConformance extends ConformanceBase { | ||
@Override | ||
protected ServerTransport getServerTransport() { | ||
return ServerTransport.BLOCKING; | ||
} | ||
|
||
@Override | ||
protected ServerProtocol getServerProtocol() { | ||
return ServerProtocol.JSON; | ||
} | ||
|
||
@Override | ||
protected Protocol createProtocol(Transport transport) { | ||
return new JsonProtocol(transport); | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
...ava/com/microsoft/thrifty/integration/conformance/NonblockingJsonProtocolConformance.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Thrifty | ||
* | ||
* Copyright (c) Microsoft Corporation | ||
* | ||
* All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the License); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING | ||
* WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, | ||
* FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. | ||
* | ||
* See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. | ||
*/ | ||
package com.microsoft.thrifty.integration.conformance; | ||
|
||
import com.microsoft.thrifty.protocol.JsonProtocol; | ||
import com.microsoft.thrifty.protocol.Protocol; | ||
import com.microsoft.thrifty.testing.ServerProtocol; | ||
import com.microsoft.thrifty.testing.ServerTransport; | ||
import com.microsoft.thrifty.transport.FramedTransport; | ||
import com.microsoft.thrifty.transport.Transport; | ||
|
||
public class NonblockingJsonProtocolConformance extends ConformanceBase { | ||
@Override | ||
protected ServerTransport getServerTransport() { | ||
return ServerTransport.NON_BLOCKING; | ||
} | ||
|
||
@Override | ||
protected ServerProtocol getServerProtocol() { | ||
return ServerProtocol.JSON; | ||
} | ||
|
||
@Override | ||
protected Transport decorateTransport(Transport transport) { | ||
// non-blocking servers require framing | ||
return new FramedTransport(transport); | ||
} | ||
|
||
@Override | ||
protected Protocol createProtocol(Transport transport) { | ||
return new JsonProtocol(transport); | ||
} | ||
} |
Oops, something went wrong.