use of org.xwiki.extension.repository.LocalExtensionRepository in project xwiki-platform by xwiki.
the class ImportTest method testImportExtension.
/**
* Test the regular document import when the XAR is tagged as extension.
*
* @throws Exception
*/
public void testImportExtension() throws Exception {
ExtensionId extensionId = new ExtensionId("test", "1.0");
XWikiDocument doc1 = new XWikiDocument(new DocumentReference("Test", "Test", "DocImport"));
doc1.setDefaultLanguage("en");
byte[] zipFile = this.createZipFile(new XWikiDocument[] { doc1 }, new String[] { "ISO-8859-1" }, extensionId);
// Store the extension in the local repository
DefaultLocalExtension localExtension = new DefaultLocalExtension(null, extensionId, "xar");
File file = File.createTempFile("temp", ".xar");
FileUtils.writeByteArrayToFile(file, zipFile);
localExtension.setFile(file);
LocalExtensionRepository localeRepository = getComponentManager().getInstance(LocalExtensionRepository.class);
localeRepository.storeExtension(localExtension);
// Listen to extension installed event
Mock extensionListener = mock(EventListener.class);
extensionListener.stubs().method("getEvents").will(returnValue(Arrays.asList(new ExtensionInstalledEvent())));
extensionListener.stubs().method("getName").will(returnValue("extension installed listener"));
extensionListener.expects(once()).method("onEvent");
ObservationManager observationManager = getComponentManager().getInstance(ObservationManager.class);
observationManager.addListener((EventListener) extensionListener.proxy());
// make sure no data is in the packager from the other tests run
this.pack = new Package();
// import and install this document
this.pack.Import(zipFile, getContext());
this.pack.install(getContext());
// check if it is there
XWikiDocument foundDocument = this.xwiki.getDocument(new DocumentReference("Test", "Test", "DocImport"), getContext());
assertFalse(foundDocument.isNew());
XWikiDocument nonExistingDocument = this.xwiki.getDocument(new DocumentReference("Test", "Test", "DocImportNonexisting"), getContext());
assertTrue(nonExistingDocument.isNew());
XWikiDocument foundTranslationDocument = foundDocument.getTranslatedDocument("fr", getContext());
assertSame(foundDocument, foundTranslationDocument);
XWikiDocument doc1Translation = new XWikiDocument(new DocumentReference("Test", "Test", "DocImport"));
doc1Translation.setLanguage("fr");
doc1Translation.setDefaultLanguage("en");
this.xwiki.saveDocument(doc1Translation, getContext());
foundTranslationDocument = foundDocument.getTranslatedDocument("fr", getContext());
assertNotSame(foundDocument, foundTranslationDocument);
// Check that the extension has been registered
InstalledExtensionRepository installedExtensionRepository = getComponentManager().getInstance(InstalledExtensionRepository.class);
assertNotNull(installedExtensionRepository.getInstalledExtension(extensionId));
assertNotNull(installedExtensionRepository.getInstalledExtension(extensionId.getId(), "wiki:" + getContext().getWikiId()));
}
use of org.xwiki.extension.repository.LocalExtensionRepository in project xwiki-platform by xwiki.
the class Package method registerExtension.
private void registerExtension(XWikiContext context) {
// Register the package as extension if it's one
if (isInstallExtension() && StringUtils.isNotEmpty(getExtensionId()) && StringUtils.isNotEmpty(getVersion())) {
ExtensionId extensionId = new ExtensionId(getExtensionId(), getVersion());
try {
LocalExtensionRepository localRepository = Utils.getComponent(LocalExtensionRepository.class);
LocalExtension localExtension = localRepository.getLocalExtension(extensionId);
if (localExtension == null) {
Extension extension;
try {
// Try to find and download the extension from a repository
extension = Utils.getComponent(ExtensionRepositoryManager.class).resolve(extensionId);
} catch (ResolveException e) {
LOGGER.debug("Can't find extension [{}]", extensionId, e);
// FIXME: Create a dummy extension. Need support for partial/lazy extension.
return;
}
localExtension = localRepository.storeExtension(extension);
}
InstalledExtensionRepository installedRepository = Utils.getComponent(InstalledExtensionRepository.class);
String namespace = "wiki:" + context.getWikiId();
// Make sure it's not already there
if (installedRepository.getInstalledExtension(localExtension.getId().getId(), namespace) == null) {
for (ExtensionId feature : localExtension.getExtensionFeatures()) {
if (installedRepository.getInstalledExtension(feature.getId(), namespace) != null) {
// Already exist so don't register it or it could create a mess
return;
}
}
} else {
return;
}
// Register the extension as installed
InstalledExtension installedExtension = installedRepository.installExtension(localExtension, namespace, false);
// Tell the world about it
Utils.getComponent(ObservationManager.class).notify(new ExtensionInstalledEvent(installedExtension.getId(), namespace), installedExtension);
} catch (Exception e) {
LOGGER.error("Failed to register extenion [{}] from the XAR", extensionId, e);
}
}
}
Aggregations