OSDN Git Service

original
[gb-231r1-is01/GB_2.3_IS01.git] / cts / tests / tests / provider / src / android / provider / cts / MediaStore_AudioTest.java
diff --git a/cts/tests/tests/provider/src/android/provider/cts/MediaStore_AudioTest.java b/cts/tests/tests/provider/src/android/provider/cts/MediaStore_AudioTest.java
new file mode 100644 (file)
index 0000000..2a37a00
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * Copyright (C) 2009 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.provider.cts;
+
+import dalvik.annotation.TestLevel;
+import dalvik.annotation.TestTargetClass;
+import dalvik.annotation.TestTargetNew;
+
+import android.provider.MediaStore.Audio;
+
+import junit.framework.TestCase;
+
+@TestTargetClass(Audio.class)
+public class MediaStore_AudioTest extends TestCase {
+    private String mKeyForBeatles;
+
+    @Override
+    protected void setUp() throws Exception {
+        super.setUp();
+        mKeyForBeatles = Audio.keyFor("beatles");
+    }
+
+    @TestTargetNew(
+      level = TestLevel.COMPLETE,
+      method = "keyFor",
+      args = {String.class}
+    )
+    public void testKeyFor() {
+        assertEquals(mKeyForBeatles, Audio.keyFor("[beatles]"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("(beatles)"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles!"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles?"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("'beatles'"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles."));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles,"));
+
+        assertEquals(mKeyForBeatles, Audio.keyFor("  beatles  "));
+
+        assertEquals(mKeyForBeatles, Audio.keyFor("BEATLES"));
+
+        assertEquals(mKeyForBeatles, Audio.keyFor("the beatles"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("a beatles"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("an beatles"));
+
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles,the"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles,a"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles,an"));
+
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles, the"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles, a"));
+        assertEquals(mKeyForBeatles, Audio.keyFor("beatles, an"));
+
+        // test sorting
+        assertTrue(Audio.keyFor("areosmith").compareTo(mKeyForBeatles) < 0);
+        assertTrue(Audio.keyFor("coldplay").compareTo(mKeyForBeatles) > 0);
+
+        // test accented characters
+        assertTrue(Audio.keyFor("¿Cómo esto funciona?").compareTo(mKeyForBeatles) < 0);
+        assertTrue(Audio.keyFor("Le passé composé").compareTo(mKeyForBeatles) > 0);
+    }
+}