mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
Add additional unit tests
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import org.apache.hc.core5.http.*;
|
||||
import org.apache.hc.core5.http.protocol.HttpContext;
|
||||
import org.apache.hc.core5.http.io.HttpRequestHandler;
|
||||
import org.apache.hc.core5.http.io.HttpServerRequestHandler;
|
||||
import org.apache.hc.core5.http.message.*;
|
||||
import org.apache.hc.core5.http.io.entity.*;
|
||||
import org.apache.hc.core5.util.*;
|
||||
@@ -51,6 +52,7 @@ class B {
|
||||
bbuf.append((byte[]) taint(), 0, 3);
|
||||
sink(bbuf.array()); //$hasTaintFlow=y
|
||||
sink(bbuf.toByteArray()); //$hasTaintFlow=y
|
||||
sink(bbuf.toString()); //SPURIOUS: $hasTaintFlow=y
|
||||
|
||||
CharArrayBuffer cbuf = new CharArrayBuffer(42);
|
||||
cbuf.append(bbuf.toByteArray(), 0, 3);
|
||||
@@ -63,6 +65,12 @@ class B {
|
||||
sink(Args.notNull(taint(), "x")); //$hasTaintFlow=y
|
||||
sink(Args.notEmpty((String) taint(), "x")); //$hasTaintFlow=y
|
||||
sink(Args.notBlank((String) taint(), "x")); //$hasTaintFlow=y
|
||||
sink(Args.notNull("x", (String) taint())); // Good
|
||||
sink(Args.notNull("x", (String) taint()));
|
||||
}
|
||||
|
||||
class Test3 implements HttpServerRequestHandler {
|
||||
public void handle(ClassicHttpRequest req, HttpServerRequestHandler.ResponseTrigger restr, HttpContext ctx) throws HttpException, IOException {
|
||||
B.sink(req.getEntity()); //$hasTaintFlow=y
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
/*
|
||||
* ====================================================================
|
||||
* 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.
|
||||
* ====================================================================
|
||||
*
|
||||
* This software consists of voluntary contributions made by many
|
||||
* individuals on behalf of the Apache Software Foundation. For more
|
||||
* information on the Apache Software Foundation, please see
|
||||
* <http://www.apache.org/>.
|
||||
*
|
||||
*/
|
||||
package org.apache.hc.core5.http.io;
|
||||
import java.io.IOException;
|
||||
import org.apache.hc.core5.http.ClassicHttpRequest;
|
||||
import org.apache.hc.core5.http.ClassicHttpResponse;
|
||||
import org.apache.hc.core5.http.HttpException;
|
||||
import org.apache.hc.core5.http.protocol.HttpContext;
|
||||
|
||||
public interface HttpServerRequestHandler {
|
||||
interface ResponseTrigger {
|
||||
void sendInformation(ClassicHttpResponse response) throws HttpException, IOException;
|
||||
|
||||
void submitResponse(ClassicHttpResponse response) throws HttpException, IOException;
|
||||
|
||||
}
|
||||
void handle(
|
||||
ClassicHttpRequest request,
|
||||
ResponseTrigger responseTrigger,
|
||||
HttpContext context) throws HttpException, IOException;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user