/* * Copyright (C) 2017 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 android.util; import android.support.test.filters.LargeTest; import android.util.ArrayMap; import junit.framework.TestCase; import org.junit.Test; import java.util.ConcurrentModificationException; /** * Unit tests for ArrayMap that don't belong in CTS. */ @LargeTest public class ArrayMapTest extends TestCase { private static final String TAG = "ArrayMapTest"; ArrayMap map = new ArrayMap<>(); /** * Attempt to generate a ConcurrentModificationException in ArrayMap. *

* ArrayMap is explicitly documented to be non-thread-safe, yet it's easy to accidentally screw * this up; ArrayMap should (in the spirit of the core Java collection types) make an effort to * catch this and throw ConcurrentModificationException instead of crashing somewhere in its * internals. * * @throws Exception */ @Test public void testConcurrentModificationException() throws Exception { final int TEST_LEN_MS = 5000; System.out.println("Starting ArrayMap concurrency test"); new Thread(() -> { int i = 0; while (map != null) { try { map.put(String.format("key %d", i++), "B_DONT_DO_THAT"); } catch (ArrayIndexOutOfBoundsException e) { Log.e(TAG, "concurrent modification uncaught, causing indexing failure", e); fail(); } catch (ClassCastException e) { Log.e(TAG, "concurrent modification uncaught, causing cache corruption", e); fail(); } catch (ConcurrentModificationException e) { System.out.println("[successfully caught CME at put #" + i + " size=" + (map == null ? "??" : String.valueOf(map.size())) + "]"); } if (i % 200 == 0) { System.out.print("."); } } }).start(); for (int i = 0; i < (TEST_LEN_MS / 100); i++) { try { Thread.sleep(100); map.clear(); System.out.print("X"); } catch (InterruptedException e) { } catch (ArrayIndexOutOfBoundsException e) { Log.e(TAG, "concurrent modification uncaught, causing indexing failure"); fail(); } catch (ClassCastException e) { Log.e(TAG, "concurrent modification uncaught, causing cache corruption"); fail(); } catch (ConcurrentModificationException e) { System.out.println( "[successfully caught CME at clear #" + i + " size=" + map.size() + "]"); } } map = null; // will stop other thread System.out.println(); } /** * Check to make sure the same operations behave as expected in a single thread. */ @Test public void testNonConcurrentAccesses() throws Exception { for (int i = 0; i < 100000; i++) { try { map.put(String.format("key %d", i++), "B_DONT_DO_THAT"); if (i % 200 == 0) { System.out.print("."); } if (i % 500 == 0) { map.clear(); System.out.print("X"); } } catch (ConcurrentModificationException e) { Log.e(TAG, "concurrent modification caught on single thread", e); fail(); } } } }