-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ggj] test: add logging integration target and goldens, consolidate r…
…ules (#433) * fix: support non-name fields with res-refs in resname def parsing * fix: add workaround for missing default_host and oauth_scopes annotation * fix: clarify LRO parsing error messages * feat: support deeply-nested types in AST and proto message parsing * fix: prevent resname tokens from matching subcomponents * fix: use TypeParser for proto message parsing * fix: use generic types in field instantiation in ServiceClientTest * fix: prevent descension into map types in nested message parsing * fix: merge master * fix: use both map generics in ServiceClientTest codegen * fix: dir structure of generated files * test: add asset API gradle pkg rules * fix: remove unused dep * test: add logging integration target and goldens, consolidate rules
- Loading branch information
Showing
35 changed files
with
11,509 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
filegroup( | ||
name = "goldens_files", | ||
srcs = glob(["*.java"]), | ||
) |
188 changes: 188 additions & 0 deletions
188
test/integration/goldens/logging/BillingAccountLocationName.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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 com.google.logging.v2; | ||
|
||
import com.google.api.pathtemplate.PathTemplate; | ||
import com.google.api.resourcenames.ResourceName; | ||
import com.google.common.base.Preconditions; | ||
import com.google.common.collect.ImmutableMap; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Objects; | ||
import javax.annotation.Generated; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS. | ||
@Generated("by gapic-generator-java") | ||
public class BillingAccountLocationName implements ResourceName { | ||
private static final PathTemplate BILLING_ACCOUNT_LOCATION = | ||
PathTemplate.createWithoutUrlEncoding( | ||
"billingAccounts/{billing_account}/locations/{location}"); | ||
private volatile Map<String, String> fieldValuesMap; | ||
private final String billingAccount; | ||
private final String location; | ||
|
||
private BillingAccountLocationName(Builder builder) { | ||
billingAccount = Preconditions.checkNotNull(builder.getBillingAccount()); | ||
location = Preconditions.checkNotNull(builder.getLocation()); | ||
} | ||
|
||
public String getBillingAccount() { | ||
return billingAccount; | ||
} | ||
|
||
public String getLocation() { | ||
return location; | ||
} | ||
|
||
public static Builder newBuilder() { | ||
return new Builder(); | ||
} | ||
|
||
public Builder toBuilder() { | ||
return new Builder(this); | ||
} | ||
|
||
public static BillingAccountLocationName of(String billingAccount, String location) { | ||
return newBuilder().setBillingAccount(billingAccount).setLocation(location).build(); | ||
} | ||
|
||
public static String format(String billingAccount, String location) { | ||
return newBuilder().setBillingAccount(billingAccount).setLocation(location).build().toString(); | ||
} | ||
|
||
public static BillingAccountLocationName parse(String formattedString) { | ||
if (formattedString.isEmpty()) { | ||
return null; | ||
} | ||
Map<String, String> matchMap = | ||
BILLING_ACCOUNT_LOCATION.validatedMatch( | ||
formattedString, | ||
"BillingAccountLocationName.parse: formattedString not in valid format"); | ||
return of(matchMap.get("billing_account"), matchMap.get("location")); | ||
} | ||
|
||
public static List<BillingAccountLocationName> parseList(List<String> formattedStrings) { | ||
List<BillingAccountLocationName> list = new ArrayList<>(formattedStrings.size()); | ||
for (String formattedString : formattedStrings) { | ||
list.add(parse(formattedString)); | ||
} | ||
return list; | ||
} | ||
|
||
public static List<String> toStringList(List<BillingAccountLocationName> values) { | ||
List<String> list = new ArrayList<>(values.size()); | ||
for (BillingAccountLocationName value : values) { | ||
if (Objects.isNull(value)) { | ||
list.add(""); | ||
} else { | ||
list.add(value.toString()); | ||
} | ||
} | ||
return list; | ||
} | ||
|
||
public static boolean isParsableFrom(String formattedString) { | ||
return BILLING_ACCOUNT_LOCATION.matches(formattedString); | ||
} | ||
|
||
@Override | ||
public Map<String, String> getFieldValuesMap() { | ||
if (Objects.isNull(fieldValuesMap)) { | ||
synchronized (this) { | ||
if (Objects.isNull(fieldValuesMap)) { | ||
ImmutableMap.Builder<String, String> fieldMapBuilder = ImmutableMap.builder(); | ||
if (!Objects.isNull(billingAccount)) { | ||
fieldMapBuilder.put("billing_account", billingAccount); | ||
} | ||
if (!Objects.isNull(location)) { | ||
fieldMapBuilder.put("location", location); | ||
} | ||
fieldValuesMap = fieldMapBuilder.build(); | ||
} | ||
} | ||
} | ||
return fieldValuesMap; | ||
} | ||
|
||
public String getFieldValue(String fieldName) { | ||
return getFieldValuesMap().get(fieldName); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return BILLING_ACCOUNT_LOCATION.instantiate("billing_account", billingAccount); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (o == this) { | ||
return true; | ||
} | ||
if (o != null || getClass() == o.getClass()) { | ||
BillingAccountLocationName that = ((BillingAccountLocationName) o); | ||
return Objects.equals(this.billingAccount, that.billingAccount) | ||
&& Objects.equals(this.location, that.location); | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
int h = 1; | ||
h *= 1000003; | ||
h ^= Objects.hashCode(billingAccount); | ||
h *= 1000003; | ||
h ^= Objects.hashCode(location); | ||
return h; | ||
} | ||
|
||
/** Builder for billingAccounts/{billing_account}/locations/{location}. */ | ||
public static class Builder { | ||
private String billingAccount; | ||
private String location; | ||
|
||
private Builder() {} | ||
|
||
public String getBillingAccount() { | ||
return billingAccount; | ||
} | ||
|
||
public String getLocation() { | ||
return location; | ||
} | ||
|
||
public Builder setBillingAccount(String billingAccount) { | ||
this.billingAccount = billingAccount; | ||
return this; | ||
} | ||
|
||
public Builder setLocation(String location) { | ||
this.location = location; | ||
return this; | ||
} | ||
|
||
private Builder(BillingAccountLocationName billingAccountLocationName) { | ||
billingAccount = billingAccountLocationName.billingAccount; | ||
location = billingAccountLocationName.location; | ||
} | ||
|
||
public BillingAccountLocationName build() { | ||
return new BillingAccountLocationName(this); | ||
} | ||
} | ||
} |
Oops, something went wrong.