Parcourir la source

GTM service test

wfansh il y a 6 mois
Parent
commit
08dcfe7adb

+ 5 - 3
src/main/java/com/wechi/adweb/bridge/google/gtm/service/GTMService.java

@@ -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

+ 4 - 3
src/test/java/com/wechi/adweb/bridge/google/analytics/GAServiceTests.java → src/test/java/com/wechi/adweb/bridge/google/analytics/service/GAServiceTests.java

@@ -1,4 +1,4 @@
-package com.wechi.adweb.bridge.google.analytics;
+package com.wechi.adweb.bridge.google.analytics.service;
 
 import static com.wechi.adweb.bridge.google.analytics.dto.report.ReportConstant.*;
 
@@ -6,8 +6,6 @@ import com.wechi.adweb.bridge.exception.DataException;
 import com.wechi.adweb.bridge.google.analytics.dto.report.GAReportRequestDTO;
 import com.wechi.adweb.bridge.google.analytics.dto.report.OrderByType;
 import com.wechi.adweb.bridge.google.analytics.dto.report.ReportType;
-import com.wechi.adweb.bridge.google.analytics.service.GAAdminService;
-import com.wechi.adweb.bridge.google.analytics.service.GADataService;
 import com.wechi.adweb.bridge.util.JsonUtils;
 
 import org.junit.jupiter.api.Test;
@@ -16,6 +14,9 @@ import org.springframework.boot.test.context.SpringBootTest;
 
 import java.util.List;
 
+/**
+ * @author wfansh
+ */
 @SpringBootTest
 public class GAServiceTests {
 

+ 13 - 0
src/test/java/com/wechi/adweb/bridge/google/gtm/service/GTMServiceTest.java

@@ -0,0 +1,13 @@
+package com.wechi.adweb.bridge.google.gtm.service;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+
+/**
+ * @author wfansh
+ */
+@SpringBootTest
+public class GTMServiceTest {
+
+    @Autowired private GTMService gtmService;
+}