/* * 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.sling.ide.test.impl; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThat; import java.io.ByteArrayInputStream; import org.apache.sling.ide.eclipse.core.internal.ContentResourceTester; import org.apache.sling.ide.test.impl.helpers.ProjectAdapter; import org.apache.sling.ide.test.impl.helpers.TemporaryProject; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.Path; import org.junit.Rule; import org.junit.Test; public class ContentResourceTesterTest { @Rule public TemporaryProject projectRule = new TemporaryProject(); @Test public void simpleFacetedProjectIsNotExportable() throws CoreException { // create faceted project IProject contentProject = projectRule.getProject(); ProjectAdapter project = new ProjectAdapter(contentProject); project.addNatures("org.eclipse.wst.common.project.facet.core.nature"); assertThat("Faceted project can not be exported", new ContentResourceTester().test(contentProject, "canBeExported", null, null), equalTo(false)); } @Test public void slingContentProjectIsExportable() throws CoreException, InterruptedException { // create faceted project IProject contentProject = projectRule.getProject(); ProjectAdapter project = new ProjectAdapter(contentProject); project.addNatures("org.eclipse.wst.common.project.facet.core.nature"); // install bundle facet project.installFacet("sling.content", "1.0"); assertThat("Sling content project can be exported", new ContentResourceTester().test(contentProject, "canBeExported", null, null), equalTo(true)); } @Test public void slingContentProjectSyncedResourcesAreExportable() throws CoreException, InterruptedException { // create faceted project IProject contentProject = projectRule.getProject(); ProjectAdapter project = new ProjectAdapter(contentProject); project.addNatures("org.eclipse.wst.common.project.facet.core.nature"); // install bundle facet project.installFacet("sling.content", "1.0"); project.createOrUpdateFile(Path.fromPortableString("jcr_root/test/hello.txt"), new ByteArrayInputStream( "goodbye, world".getBytes())); assertThat("Content sync dir can be exported", new ContentResourceTester().test(contentProject.findMember("jcr_root"), "canBeExported", null, null), equalTo(true)); assertThat("Dir under sync dir can be exported", new ContentResourceTester().test(contentProject.findMember("jcr_root/test"), "canBeExported", null, null), equalTo(true)); assertThat("File under sync dir can be exported", new ContentResourceTester().test(contentProject.findMember("jcr_root/test/hello.txt"), "canBeExported", null, null), equalTo(true)); } @Test public void slingContentProjectUnrelatedResourcesAreNotExportable() throws CoreException, InterruptedException { // create faceted project IProject contentProject = projectRule.getProject(); ProjectAdapter project = new ProjectAdapter(contentProject); project.addNatures("org.eclipse.wst.common.project.facet.core.nature"); // install bundle facet project.installFacet("sling.content", "1.0"); project.createOrUpdateFile(Path.fromPortableString("res/hello.txt"), new ByteArrayInputStream( "goodbye, world".getBytes())); assertThat("Dir not under content sync dir can not be exported", new ContentResourceTester().test(contentProject.findMember("res"), "canBeExported", null, null), equalTo(false)); assertThat("File not under content sync dir can not be exported", new ContentResourceTester().test(contentProject.findMember("res/hello.txt"), "canBeExported", null, null), equalTo(false)); } }