blob: bf125f8f4c7147d926917834b266bafd63c79b43 [file] [log] [blame]
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.net.watchlist;
import static org.junit.Assert.assertEquals;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.filters.SmallTest;
import androidx.test.runner.AndroidJUnit4;
import com.android.service.nano.NetworkWatchlistAppResultProto;
import com.android.service.nano.NetworkWatchlistReportProto;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
/**
* runtest frameworks-services -c com.android.server.net.watchlist.ReportEncoderTests
*/
@RunWith(AndroidJUnit4.class)
@SmallTest
public class ReportEncoderTests {
private static final String TEST_XML_1 = "NetworkWatchlistTest/watchlist_config_test1.xml";
private static final String TEST_XML_1_HASH =
"C99F27A08B1FDB15B101098E12BB2A0AA0D474E23C50F24920A52AB2322BFD94";
private static final int REPORT_VERSION = 1;
private static final int EXPECTED_REPORT_VERSION = 1;
private Context mContext;
private File mTestXmlFile;
@Before
public void setUp() throws Exception {
mContext = InstrumentationRegistry.getContext();
mTestXmlFile = new File(mContext.getFilesDir(), "test_watchlist_config.xml");
mTestXmlFile.delete();
}
@After
public void tearDown() throws Exception {
mTestXmlFile.delete();
}
@Test
public void testReportUtils_serializeReport() throws Exception {
HashMap<String, Boolean> map = new HashMap<>();
map.put("C86F9D37425340B635F43D6BC2506630761ADA71F5E6BBDBCA4651C479F9FB44", false);
map.put("B86F9D37425340B635F43D6BC2506630761ADA71F5E6BBDBCA4651C479F9FB43", true);
map.put("D86F9D37425340B635F43D6BC2506630761ADA71F5E6BBDBCA4651C479F9FB45", false);
map.put("E86F9D37425340B635F43D6BC2506630761ADA71F5E6BBDBCA4651C479F9FB46", true);
map.put("F86F9D37425340B635F43D6BC2506630761ADA71F5E6BBDBCA4651C479F9FB47", true);
copyWatchlistConfigXml(mContext, TEST_XML_1, mTestXmlFile);
WatchlistConfig config = new WatchlistConfig(mTestXmlFile);
final byte[] result = ReportEncoder.serializeReport(config, map);
// Parse result back to NetworkWatchlistReportDumpProto
final NetworkWatchlistReportProto reportProto =
NetworkWatchlistReportProto.parseFrom(result);
assertEquals(REPORT_VERSION, reportProto.reportVersion);
assertEquals(TEST_XML_1_HASH, reportProto.watchlistConfigHash);
assertEquals(map.size(), reportProto.appResult.length);
for (NetworkWatchlistAppResultProto appProto : reportProto.appResult) {
final String digest = appProto.appDigest;
assertEquals(map.get(digest), appProto.encodedResult);
}
}
private static void copyWatchlistConfigXml(Context context, String xmlAsset, File outFile)
throws IOException {
writeToFile(outFile, readAsset(context, xmlAsset));
}
private static String readAsset(Context context, String assetPath) throws IOException {
final StringBuilder sb = new StringBuilder();
try (BufferedReader br = new BufferedReader(
new InputStreamReader(
context.getResources().getAssets().open(assetPath)))) {
String line;
while ((line = br.readLine()) != null) {
sb.append(line);
sb.append(System.lineSeparator());
}
}
return sb.toString();
}
private static void writeToFile(File path, String content)
throws IOException {
path.getParentFile().mkdirs();
try (FileWriter writer = new FileWriter(path)) {
writer.write(content);
}
}
}