ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/coyote/http2/TestHttp2Section_3_5.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/coyote/http2/TestHttp2Section_3_5.java
Status
scanned
Type
file
Name
TestHttp2Section_3_5.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2738 (2.7 KB)
MD5
10bb71ff1f6efe413e1339d763d1ce23
SHA1
9298dbeffb59d6def4525a95390c6677870fc152
SHA256
4f4aac0c57a1d770d3c85e0f047d699a65e54aeb78c677ee9351b728d25bd80d
SHA512

      
    
SHA1_git
d8f57e72f5ff39311ee45768a65164c5e10da23f
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestHttp2Section_3_5.java | 2.7 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.coyote.http2; import java.io.IOException; import org.junit.Assert; import org.junit.Test; public class TestHttp2Section_3_5 extends Http2TestBase { @Test public void testNoConnectionPreface() throws Exception { enableHttp2(); configureAndStartWebApplication(); openClientConnection(); doHttpUpgrade(); // Server settings parser.readFrame(); Assert.assertEquals("0-Settings-[3]-[200] " + "0-Settings-End ", output.getTrace()); output.clearTrace(); // Should send client preface here. This will trigger an error. // Send two pings (2*(9+8)=34 bytes) as server looks for entire preface // of 24 bytes. sendPing(); // Depending on timing, this ping may fail after the header has been // sent but before the ping body since: // 9 (ping 1 header) + 8 (ping 1 body) + 9 (ping 2 header) = 26 which // which is enough data for the server to determine that the preface is // invalid and close the connection. A subsequent attempt to send ping 2 // body will fail. try { sendPing(); } catch (IOException ignore) { // Ignore } // If the client preface had been valid, this would be an // acknowledgement. Of the settings. As the preface was invalid, it // should be a GOAWAY frame. try { parser.readFrame(); Assert.assertTrue(output.getTrace(), output.getTrace().startsWith("0-Goaway-[1]-[1]-[")); } catch (IOException ioe) { // Ignore // This is expected on some platforms and depends on timing. Once // the server closes the connection the client may see an exception // when trying to read the GOAWAY frame. } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
35.95
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9