GAServiceTests.java 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.wechi.adweb.bridge.google.analytics;
  2. import com.google.gson.Gson;
  3. import com.wechi.adweb.bridge.exception.DataException;
  4. import com.wechi.adweb.bridge.google.analytics.dto.report.GAReportRequestDTO;
  5. import com.wechi.adweb.bridge.google.analytics.dto.report.ReportType;
  6. import org.junit.jupiter.api.Test;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. @SpringBootTest
  10. public class GAServiceTests {
  11. @Autowired private GAAdminService gaAdminService;
  12. @Autowired private GADataService gaDataService;
  13. private final String propertyName = "properties/457183952";
  14. private final String startDate = "2023-10-01";
  15. private final String endDate = "2024-10-01";
  16. private final Gson gson = new Gson();
  17. @Test
  18. void runReport() throws DataException {
  19. // 1. Country chart.
  20. GAReportRequestDTO reportRequest = new GAReportRequestDTO();
  21. reportRequest.setPropertyName(propertyName);
  22. reportRequest.setReportType(ReportType.ADWEB_COUNTRY_CHART);
  23. reportRequest.setStartDate(startDate);
  24. reportRequest.setEndDate(endDate);
  25. System.out.println(gson.toJson(gaDataService.runReport(reportRequest)));
  26. // 2. Session source medium view.
  27. reportRequest = new GAReportRequestDTO();
  28. reportRequest.setPropertyName(propertyName);
  29. reportRequest.setReportType(ReportType.ADWEB_SESSION_SOURCE_MEDIUM_VIEW);
  30. reportRequest.setStartDate(startDate);
  31. reportRequest.setEndDate(endDate);
  32. System.out.println(gson.toJson(gaDataService.runReport(reportRequest)));
  33. // 3. Page path view.
  34. reportRequest = new GAReportRequestDTO();
  35. reportRequest.setPropertyName(propertyName);
  36. reportRequest.setReportType(ReportType.ADWEB_PAGE_PATH_VIEW);
  37. reportRequest.setStartDate(startDate);
  38. reportRequest.setEndDate(endDate);
  39. System.out.println(gson.toJson(gaDataService.runReport(reportRequest)));
  40. // 4. Page views.
  41. reportRequest = new GAReportRequestDTO();
  42. reportRequest.setPropertyName(propertyName);
  43. reportRequest.setReportType(ReportType.PAGE_VIEWS);
  44. reportRequest.setStartDate(startDate);
  45. reportRequest.setEndDate(endDate);
  46. System.out.println(gson.toJson(gaDataService.runReport(reportRequest)));
  47. }
  48. }