Esempio n. 1
0
        private void OnCreateProjectFromFLEx(object sender, EventArgs e)
        {
            var dlg = new NewProjectFromRawLiftDialog();

            if (DialogResult.OK != dlg.ShowDialog())
            {
                return;
            }

            Logger.WriteEvent("Attempting create new project from FLEx Export...");

            if (ProjectFromRawFLExLiftFilesCreator.Create(dlg.PathToNewProjectDirectory, dlg.PathToLift))
            {
                if (OpenProject(dlg.PathToNewProjectDirectory))
                {
                    using (var info = new NewProjectInformationDialog(dlg.PathToNewProjectDirectory))
                    {
                        info.ShowDialog();
                    }
                }
            }
            if (_project != null)
            {
                var logger = _project.Container.Resolve <ILogger>();
                logger.WriteConciseHistoricalEvent("Created New Project From FLEx Export");
            }
        }
        public void Create_LdmlWritingSystemsFound_CopiesWritingSystems()
        {
            string ldmlText =
                @"<?xml version=""1.0"" encoding=""utf-8""?>
<ldml>
	<identity>
		<version number="""" />
		<generation date=""0001-01-01T00:00:00"" />
		<language type=""test"" />
	</identity>
	<collations />
	<special xmlns:palaso=""urn://palaso.org/ldmlExtensions/v1"">
		<palaso:abbreviation value=""test"" />
		<palaso:defaultFontFamily value=""Arial"" />
		<palaso:defaultFontSize value=""12"" />
	</special>
</ldml>";

            using (var testDir = new TemporaryFolder("NormalSituation_CreatesProject"))
            {
                var lift = new TempLiftFile(testDir, "", "0.12");
                using (var ldmlFile = new TempFile(ldmlText))
                {
                    ldmlFile.MoveTo(Path.Combine(testDir.Path, "test.ldml"));
                    var targetDir = testDir.Combine("target");
                    Assert.IsTrue(ProjectFromRawFLExLiftFilesCreator.Create(targetDir, lift.Path));
                    AssertFileExistsInTargetDir(Path.Combine(targetDir, "WritingSystems"), "test.ldml");
                }
            }
        }
        public void Create_SourceLiftLocked_GivesMessageReturnsFalse()
        {
            using (var lift = new TempLiftFile(""))
            {
                using (var stream = File.OpenWrite(lift.Path))
                {
                    var targetDir = Path.Combine(Path.GetTempPath(), "ProjectFromFLExCreatorTests");

                    using (var x = new ErrorReport.NonFatalErrorReportExpected())
                    {
                        Assert.IsFalse(ProjectFromRawFLExLiftFilesCreator.Create(targetDir, lift.Path));
                    }
                }
            }
        }
        public void Create_LiftAndRangesFound_CopiesRanges()
        {
            using (var testDir = new TemporaryFolder("NormalSituation_CreatesProject"))
            {
                using (var lift = new TempLiftFile(testDir, "", "0.12"))
                {
                    File.WriteAllText(lift.Path + "-ranges", "hello");
                    var targetDir = testDir.Combine("target");
                    Assert.IsTrue(ProjectFromRawFLExLiftFilesCreator.Create(targetDir, lift.Path));

                    var projectName = Path.GetFileNameWithoutExtension(targetDir);
                    AssertFileExistsInTargetDir(targetDir, projectName + ".lift-ranges");
                }
            }
        }
        public void Create_JustLiftFound_CreatesProjectAndCopiesLIFT()
        {
            using (var testDir = new TemporaryFolder("NormalSituation_CreatesProject"))
            {
                using (var lift = new TempLiftFile(testDir, "<entry id='foo'></entry>", "0.12"))
                {
                    var targetDir = testDir.Combine("target");

                    Assert.IsTrue(ProjectFromRawFLExLiftFilesCreator.Create(targetDir, lift.Path));
                    var projectName = Path.GetFileNameWithoutExtension(targetDir);
                    Assert.IsTrue(Directory.Exists(targetDir));
                    var liftName = projectName + ".lift";
                    AssertFileExistsInTargetDir(targetDir, liftName);

                    var liftPath = Path.Combine(targetDir, liftName);
                    AssertThatXmlIn.File(liftPath).HasAtLeastOneMatchForXpath("//entry[@id='foo']");
                }
            }
        }