blob: e60b4bbee1f3dd6dddd21e0b9dfb25df3ce789bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* VMware Inc. - initial contribution
*******************************************************************************/
package org.eclipse.virgo.bundlor.blint.support.contributors;
import static junit.framework.Assert.assertEquals;
import java.util.Set;
import org.junit.Test;
import org.eclipse.virgo.bundlor.util.SimpleManifestContents;
import org.eclipse.virgo.util.parser.manifest.ManifestContents;
public class BundleManifestVersionValidatorTests {
private final BundleManifestVersionValidator validator = new BundleManifestVersionValidator();
@Test
public void valid() {
ManifestContents manifest = new SimpleManifestContents();
manifest.getMainAttributes().put("Bundle-ManifestVersion", "2");
Set<String> warnings = this.validator.validate(manifest);
assertEquals(0, warnings.size());
}
@Test
public void invalid() {
ManifestContents manifest = new SimpleManifestContents();
manifest.getMainAttributes().put("Bundle-ManifestVersion", "1");
Set<String> warnings = this.validator.validate(manifest);
assertEquals(1, warnings.size());
}
@Test
public void unspecified() {
Set<String> warnings = this.validator.validate(new SimpleManifestContents());
assertEquals(1, warnings.size());
}
}