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,51 @@
/*
* 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.rpc.internal;

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

@InternalApi
public class RoutingHeaderHelper {
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved

public static void addParams(
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
ImmutableMap.Builder<String, String> paramsBuilder,
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
String fieldValue,
String headerKey,
PathTemplate pattern) {
Map<String, String> matchedValues = pattern.match(fieldValue);
if (matchedValues != null && matchedValues.containsKey(headerKey)) {
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
paramsBuilder.put(headerKey, matchedValues.get(headerKey));
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
* 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.rpc.internal;

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

import com.google.api.pathtemplate.PathTemplate;
import com.google.common.collect.ImmutableMap;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

@RunWith(JUnit4.class)
public class RoutingHeaderHelperTest {

@Test
public void shouldAddParamsIfThereAreMatchedValuesWithRoutingHeader() {
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
PathTemplate pathTemplate = PathTemplate.create("projects/**/{table_location=instances/*}");
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
String headerKey = "table_location";
RoutingHeaderHelper.addParams(
params, "projects/my_cozy_home/instances/living_room", headerKey, pathTemplate);
assertThat(params.build()).containsExactly(headerKey, "instances/living_room");
}

@Test
public void shouldNotAddParamsIfThereAreMatchedValuesWithNoRoutingHeaders() {
PathTemplate pathTemplate = PathTemplate.create("projects/**");
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
String headerKey = "table_location";
RoutingHeaderHelper.addParams(params, "projects/my_cozy_home/", headerKey, pathTemplate);
assertThat(params.build()).isEmpty();
blakeli0 marked this conversation as resolved.
Show resolved Hide resolved
}

@Test
public void shouldNotAddParamsIfThereAreNoMatchedValues() {
PathTemplate pathTemplate = PathTemplate.create("projects/**/{table_location=instances/*}");
ImmutableMap.Builder<String, String> params = ImmutableMap.builder();
String headerKey = "table_location";
RoutingHeaderHelper.addParams(params, "projects/does_not_matter", headerKey, pathTemplate);
assertThat(params.build()).isEmpty();
}
}