Prechádzať zdrojové kódy

Create trigger and tag

wfansh 6 mesiacov pred
rodič
commit
6c53890174

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

@@ -243,10 +243,10 @@ public class GTMService {
     GTMTriggerDTO createTrigger(String workspaceResourceName) throws DataException {
         try {
             Trigger trigger = new Trigger();
+            trigger.setName("Page View Trigger");
             // See
             // https://developers.google.com/tag-platform/tag-manager/api/v2/reference/accounts/containers/workspaces/triggers#type
             trigger.setType("pageview");
-            trigger.setName("Page View Trigger");
 
             Trigger createdTrigger =
                     tagManager
@@ -277,7 +277,8 @@ public class GTMService {
     }
 
     @VisibleForTesting
-    void createGoogleTag(String workspaceResourceName, String googleTagId) throws DataException {
+    void createGoogleTag(String workspaceResourceName, String triggerId, String googleTagId)
+            throws DataException {
         try {
             Parameter parameter = new Parameter();
             // See
@@ -287,8 +288,10 @@ public class GTMService {
             parameter.setValue(googleTagId);
 
             Tag tag = new Tag();
+            tag.setName("Google Tag - PV");
             tag.setType("googtag");
             tag.setParameter(Collections.singletonList(parameter));
+            tag.setFiringTriggerId(Collections.singletonList(triggerId));
 
             Tag createdTag =
                     tagManager

+ 12 - 2
src/test/java/com/wechi/adweb/bridge/google/gtm/service/GTMServiceTest.java

@@ -1,5 +1,9 @@
 package com.wechi.adweb.bridge.google.gtm.service;
 
+import com.wechi.adweb.bridge.exception.DataException;
+import com.wechi.adweb.bridge.google.gtm.dto.GTMTriggerDTO;
+import com.wechi.adweb.bridge.google.gtm.dto.GTMWorkspaceDTO;
+
 import org.junit.jupiter.api.Test;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.boot.test.context.SpringBootTest;
@@ -10,10 +14,16 @@ import org.springframework.boot.test.context.SpringBootTest;
 @SpringBootTest
 public class GTMServiceTest {
 
+    @Autowired private GTMService gtmService;
+
     private final String containerResourceName = "accounts/6000226571/containers/196039856";
 
-    @Autowired private GTMService gtmService;
+    private final String googleTagId = "G-LHFYWQKHJV";
 
     @Test
-    void testGTMWorkflow() throws Exception {}
+    void testTriggerAndTag() throws DataException {
+        GTMWorkspaceDTO gtmWorkspace = gtmService.getDefaultWorkspace(containerResourceName);
+        GTMTriggerDTO gtmTrigger = gtmService.createTrigger(gtmWorkspace.getResourceName());
+        gtmService.createGoogleTag(gtmWorkspace.getResourceName(), gtmTrigger.getId(), googleTagId);
+    }
 }