Skip to content

Commit

Permalink
Merge branch 'master' into fix-5893
Browse files Browse the repository at this point in the history
  • Loading branch information
Aias00 authored Jan 21, 2025
2 parents 5f5b9c5 + a6704e1 commit 2db4698
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* 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.shenyu.web.filter;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.mock.http.server.reactive.MockServerHttpRequest;
import org.springframework.mock.web.server.MockServerWebExchange;
import org.springframework.web.server.ServerWebExchange;
import org.springframework.web.server.WebFilterChain;
import reactor.core.publisher.Mono;
import reactor.test.StepVerifier;

import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

/**
* test case for {@link CollapseSlashesFilter}.
*/
public final class CollapseSlashesFilterTest {

private CollapseSlashesFilter collapseSlashesFilter;

private WebFilterChain webFilterChain;

@BeforeEach
public void setUp() {
webFilterChain = mock(WebFilterChain.class);
collapseSlashesFilter = new CollapseSlashesFilter();
when(webFilterChain.filter(any())).thenReturn(Mono.empty());
}

@Test
public void filter() {
ServerWebExchange webExchange = MockServerWebExchange.from(MockServerHttpRequest.post("http://localhost:8080///////test"));
Mono<Void> filter = collapseSlashesFilter.filter(webExchange, webFilterChain);
StepVerifier.create(filter).verifyComplete();
}
}

0 comments on commit 2db4698

Please sign in to comment.