blob: f5cd49c92594b8c4b491be4bb3f01405846ea2a7 [file] [log] [blame]
/*
* 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.sshd.common;
import java.util.Map;
import org.apache.sshd.common.config.VersionProperties;
import org.apache.sshd.common.util.GenericUtils;
import org.apache.sshd.common.util.MapEntryUtils;
import org.apache.sshd.util.test.JUnitTestSupport;
import org.junit.jupiter.api.MethodOrderer.MethodName;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestMethodOrder;
import static org.junit.jupiter.api.Assertions.assertTrue;
/**
* @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a>
*/
@TestMethodOrder(MethodName.class)
@Tag("NoIoTestCase")
public class VersionPropertiesTest extends JUnitTestSupport {
public VersionPropertiesTest() {
super();
}
@Test
void nonEmptyProperties() {
Map<?, ?> props = VersionProperties.getVersionProperties();
assertTrue(MapEntryUtils.isNotEmpty(props));
}
@Test
void reportedVersionAvailable() {
Map<String, String> props = VersionProperties.getVersionProperties();
String version = props.get(VersionProperties.REPORTED_VERSION);
assertTrue(GenericUtils.isNotEmpty(version));
}
}