-
Notifications
You must be signed in to change notification settings - Fork 593
HDDS-13856. Change SstFileInfo to track fileName as the name of the file without sst extension #9221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HDDS-13856. Change SstFileInfo to track fileName as the name of the file without sst extension #9221
Changes from all commits
dccc1aa
f715e4b
d168faf
725977b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You 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 org.apache.ozone.compaction.log; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.assertEquals; | ||
| import static org.mockito.Mockito.mock; | ||
| import static org.mockito.Mockito.when; | ||
|
|
||
| import org.apache.hadoop.hdds.StringUtils; | ||
| import org.apache.ozone.rocksdb.util.SstFileInfo; | ||
| import org.junit.jupiter.api.Test; | ||
| import org.rocksdb.LiveFileMetaData; | ||
|
|
||
| /** | ||
| * Test class for Base SstFileInfo class. | ||
| */ | ||
| public class TestSstFileInfo { | ||
|
|
||
| @Test | ||
| public void testSstFileInfo() { | ||
| String smallestKey = "/smallestKey/1"; | ||
| String largestKey = "/largestKey/2"; | ||
| String columnFamily = "columnFamily/123"; | ||
| LiveFileMetaData lfm = mock(LiveFileMetaData.class); | ||
| when(lfm.fileName()).thenReturn("/1.sst"); | ||
| when(lfm.columnFamilyName()).thenReturn(StringUtils.string2Bytes(columnFamily)); | ||
| when(lfm.smallestKey()).thenReturn(StringUtils.string2Bytes(smallestKey)); | ||
| when(lfm.largestKey()).thenReturn(StringUtils.string2Bytes(largestKey)); | ||
| SstFileInfo expectedSstFileInfo = new SstFileInfo("1", smallestKey, largestKey, columnFamily); | ||
| assertEquals(expectedSstFileInfo, new SstFileInfo(lfm)); | ||
| } | ||
| } |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @swamirishi Thanks for working on this,
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done moved the test to TestOmSnapshotLocalDataManager since the code has been refactored in the jira in HDDS-13783 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems unnecessary change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We would need this change later