Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

feat: Add a builder to handle the common logic of extracting routing header values from request #1598

Merged
merged 7 commits into from
Jan 27, 2022
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
* Copyright 2022 Google LLC
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google LLC nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

package com.google.api.gax.grpc;
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved

import com.google.api.pathtemplate.PathTemplate;
import com.google.common.collect.ImmutableMap;
import java.util.Map;

/**
* This builder class builds a params map that will be used for creating {@link
* CallOptionsUtil#REQUEST_PARAMS_HEADER_KEY routing header} in {@link
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
* CallOptionsUtil#putRequestParamsDynamicHeaderOption} for gRPC requests
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
*/
public class RoutingHeaderParamsBuilder {

private final ImmutableMap.Builder<String, String> paramsBuilder;

public RoutingHeaderParamsBuilder() {
this.paramsBuilder = ImmutableMap.builder();
}

public void add(String fieldValue, String headerKey, PathTemplate pattern) {
Map<String, String> matchedValues = pattern.match(fieldValue);
if (matchedValues != null && matchedValues.containsKey(headerKey)) {
paramsBuilder.put(headerKey, matchedValues.get(headerKey));
}
}

public Map<String, String> build() {
return paramsBuilder.build();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/*
* Copyright 2022 Google LLC
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google LLC nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

package com.google.api.gax.grpc;

import static com.google.common.truth.Truth.assertThat;

import com.google.api.pathtemplate.PathTemplate;
import java.util.Map;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

@RunWith(JUnit4.class)
public class RoutingHeaderParamsBuilderTest {

private RoutingHeaderParamsBuilder routingHeaderParamsBuilder;

@Before
public void setUp() throws Exception {
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
routingHeaderParamsBuilder = new RoutingHeaderParamsBuilder();
}

@Test
public void add_happyPath() {
String headerKey = "table_location";
Map<String, String> actual =
getRoutingHeaders(
headerKey,
"projects/**/{table_location=instances/*}",
"projects/my_cozy_home/instances/living_room");
assertThat(actual).containsExactly(headerKey, "instances/living_room");
}

@Test
public void add_matchedValuesWithNoRoutingHeaderKey() {
Map<String, String> actual =
getRoutingHeaders("table_location", "projects/**", "projects/my_cozy_home/");
assertThat(actual).isEmpty();
}

@Test
public void add_emptyMatchedValues() {
Map<String, String> actual =
getRoutingHeaders(
"table_location",
"projects/**/{table_location=instances/*}",
"projects/does_not_matter");
assertThat(actual).isEmpty();
}

private Map<String, String> getRoutingHeaders(
String headerKey, String patternString, String fieldValue) {
PathTemplate pathTemplate = PathTemplate.create(patternString);
routingHeaderParamsBuilder.add(fieldValue, headerKey, pathTemplate);
return routingHeaderParamsBuilder.build();
}
}