aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/foundation/e/privacycentralapp/dummy
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/foundation/e/privacycentralapp/dummy')
-rw-r--r--app/src/main/java/foundation/e/privacycentralapp/dummy/TrackTrackersPrivacyMock.kt60
1 files changed, 60 insertions, 0 deletions
diff --git a/app/src/main/java/foundation/e/privacycentralapp/dummy/TrackTrackersPrivacyMock.kt b/app/src/main/java/foundation/e/privacycentralapp/dummy/TrackTrackersPrivacyMock.kt
new file mode 100644
index 0000000..76da6a2
--- /dev/null
+++ b/app/src/main/java/foundation/e/privacycentralapp/dummy/TrackTrackersPrivacyMock.kt
@@ -0,0 +1,60 @@
+/*
+ * Copyright (C) 2021 E FOUNDATION
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package foundation.e.privacycentralapp.dummy
+
+import foundation.e.privacymodules.trackers.ITrackTrackersPrivacyModule
+import foundation.e.privacymodules.trackers.Tracker
+
+class TrackTrackersPrivacyMock : ITrackTrackersPrivacyModule {
+ override fun getPast24HoursTrackersCalls(): List<Int> {
+ return listOf(
+ 2000, 2300, 130, 2500, 1000, 2000,
+ 2000, 2300, 130, 2500, 1000, 2000,
+ 2000, 2300, 130, 2500, 1000, 2000,
+ 2000, 2300, 130, 2500, 1000, 2000
+ )
+ }
+
+ override fun getPastMonthTrackersCalls(): List<Int> {
+ return listOf(
+ 20000, 23000, 24130, 12500, 31000, 22000,
+ 20000, 23000, 24130, 12500, 31000, 22000,
+ 20000, 23000, 24130, 12500, 31000, 22000,
+ 20000, 23000, 24130, 12500, 31000, 22000,
+ 20000, 23000, 24130, 12500, 31000, 22000
+ )
+ }
+
+ override fun getPastYearTrackersCalls(): List<Int> {
+ return listOf(
+ 620000, 823000, 424130, 712500, 831000, 922000,
+ 620000, 823000, 424130, 712500, 831000, 922000
+ )
+ }
+
+ override fun getTrackersCount(): Int {
+ return 72
+ }
+
+ override fun getTrackersForApp(appUid: Int): List<Tracker> {
+ return listOf(
+ Tracker("Crashlytics", null),
+ Tracker(label = "Facebook", null)
+ )
+ }
+}