wfansh 6 mesi fa
parent
commit
a40f3ea70a

+ 33 - 0
src/test/java/com/wechi/adweb/bridge/google/analytics/service/GAAdminServiceTests.java

@@ -0,0 +1,33 @@
+package com.wechi.adweb.bridge.google.analytics.service;
+
+import com.wechi.adweb.bridge.exception.DataException;
+import com.wechi.adweb.bridge.google.analytics.dto.GAPropertyDTO;
+import com.wechi.adweb.bridge.util.JsonUtils;
+
+import org.apache.commons.lang3.RandomStringUtils;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+public class GAAdminServiceTests {
+
+    private @Autowired GAAdminService gaAdminService;
+
+    private final String accountResourceName = "accounts/191734056";
+
+    @Test
+    @Disabled("Disabled due to operations on the production account.")
+    void testCreateProperty() throws DataException {
+
+        GAPropertyDTO gaProperty =
+                gaAdminService.createPropertyWithDataStream(
+                        accountResourceName,
+                        "AdWeb3 Test #" + RandomStringUtils.randomNumeric(5),
+                        "https://www.adwebcloud.com/");
+
+        System.out.println(JsonUtils.toJson(gaProperty));
+        gaAdminService.deleteProperty(gaProperty.getResourceName());
+    }
+}

+ 0 - 1
src/test/java/com/wechi/adweb/bridge/google/analytics/service/GADataServiceTests.java

@@ -20,7 +20,6 @@ import java.util.List;
 @SpringBootTest
 public class GADataServiceTests {
 
-    @Autowired private GAAdminService gaAdminService;
     @Autowired private GADataService gaDataService;
 
     private final String propertyResourceName = "properties/457183952";