1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package libcore.java.util;
18
19import java.util.UUID;
20import junit.framework.TestCase;
21
22// There are more tests in the harmony suite:
23// harmony-tests/src/test/java/org/apache/harmony/tests/java/util/UUIDTest.java
24public class UUIDTest extends TestCase {
25
26  public void testFromStringInvalidValues() {
27    try {
28      UUID.fromString("+f81d4fae-7dec-11d0-a765-00a0c91e6bf6");
29      fail();
30    } catch (IllegalArgumentException expected) { }
31
32    try {
33      UUID.fromString("f81d4fae-+7dec-11d0-a765-00a0c91e6bf6");
34      fail();
35    } catch (IllegalArgumentException expected) { }
36
37    try {
38      UUID.fromString("f81d4fae-7dec-+11d0-a765-00a0c91e6bf6");
39      fail();
40    } catch (IllegalArgumentException expected) { }
41
42    try {
43      UUID.fromString("f81d4fae-7dec-11d0-+a765-00a0c91e6bf6");
44      fail();
45    } catch (IllegalArgumentException expected) { }
46
47    try {
48      UUID.fromString("f81d4fae-7dec-11d0-a765-+00a0c91e6bf6");
49      fail();
50    } catch (IllegalArgumentException expected) { }
51  }
52
53}
54