|
@@ -10,6 +10,7 @@ import com.google.api.services.tagmanager.TagManagerScopes;
|
|
|
import com.google.api.services.tagmanager.model.*;
|
|
|
import com.google.auth.http.HttpCredentialsAdapter;
|
|
|
import com.google.auth.oauth2.GoogleCredentials;
|
|
|
+import com.google.common.annotations.VisibleForTesting;
|
|
|
import com.wechi.adweb.bridge.exception.DataException;
|
|
|
import com.wechi.adweb.bridge.google.gtm.dto.GTMAccountDTO;
|
|
|
import com.wechi.adweb.bridge.google.gtm.dto.GTMContainerDTO;
|
|
@@ -170,8 +171,8 @@ public class GTMService {
|
|
|
* See
|
|
|
* https://developers.google.com/tag-platform/tag-manager/api/v2/reference/accounts/user_permissions
|
|
|
*/
|
|
|
- public void setupContainerAccess(String accountResourceName, String containerId)
|
|
|
- throws DataException {
|
|
|
+ @VisibleForTesting
|
|
|
+ void setupContainerAccess(String accountResourceName, String containerId) throws DataException {
|
|
|
try {
|
|
|
// 1. Container access.
|
|
|
ContainerAccess containerAccess = new ContainerAccess();
|
|
@@ -204,7 +205,8 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public GTMWorkspaceDTO getDefaultWorkspace(String containerResourceName) throws DataException {
|
|
|
+ @VisibleForTesting
|
|
|
+ GTMWorkspaceDTO getDefaultWorkspace(String containerResourceName) throws DataException {
|
|
|
try {
|
|
|
Workspace workspace =
|
|
|
tagManager
|