Package org.apache.sling.ide.eclipse.core.internal

Examples of org.apache.sling.ide.eclipse.core.internal.ContentResourceTester


        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));
    }
View Full Code Here


        // 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));
    }
View Full Code Here

       
        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));       
    }
View Full Code Here

       
        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));
       
       
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.ide.eclipse.core.internal.ContentResourceTester

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.