114ae094b50f8f870071d9b28395559552e62529
[controller.git] / atomix-storage / src / test / java / io / atomix / storage / journal / JournalSegmentFileTest.java
1 /*
2  * Copyright 2017-2022 Open Networking Foundation and others.  All rights reserved.
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 package io.atomix.storage.journal;
17
18 import java.io.File;
19
20 import org.junit.Test;
21
22 import static org.junit.Assert.assertFalse;
23 import static org.junit.Assert.assertTrue;
24
25 /**
26  * Journal segment file test.
27  */
28 public class JournalSegmentFileTest {
29
30   @Test
31   public void testIsSegmentFile() throws Exception {
32     assertTrue(JournalSegmentFile.isSegmentFile("foo", "foo-1.log"));
33     assertFalse(JournalSegmentFile.isSegmentFile("foo", "bar-1.log"));
34     assertTrue(JournalSegmentFile.isSegmentFile("foo", "foo-1-1.log"));
35   }
36
37   @Test
38   public void testCreateSegmentFile() throws Exception {
39     File file = JournalSegmentFile.createSegmentFile("foo", new File(System.getProperty("user.dir")), 1);
40     assertTrue(JournalSegmentFile.isSegmentFile("foo", file));
41   }
42
43 }