Exemplo n.º 1
0
        public void TestKmlImportUnparseable()
        {
            string   sampleKmlFile = ConfigurationManager.AppSettings["samplekml_unparseable"];
            DateTime timeStamp     = DateTime.Today;

            try
            {
                SampleSitecoreLogic.ImportKml(sampleKmlFile, timeStamp);
                Assert.Fail("An exception was expected here");
            }
            catch (XmlException exc)
            {
                Assert.AreEqual("'<' is an unexpected token. The expected token is '>'. Line 291, position 7.", exc.Message);
            }
        }
Exemplo n.º 2
0
        public void TestKmlImport()
        {
            string   sampleKmlFile = ConfigurationManager.AppSettings["samplekml"];
            DateTime timeStamp     = DateTime.Today;

            SampleSitecoreLogic.ImportKml(sampleKmlFile, timeStamp);

            // Check if the import root node is available
            Item imported =
                Context.Database.GetItem(string.Format("/sitecore/content/Imported content {0}",
                                                       timeStamp.ToString("yyyy MM dd")));

            Assert.IsNotNull(imported, "Import root item could not be found");

            // Check if all 35 placemarks in the KML file were imported
            Assert.AreEqual(35, imported.Children.Count, "Not the right amount of imported placemarks found");

            // Check if all values are filled
            foreach (Item child in imported.Children)
            {
                Assert.IsFalse(string.IsNullOrWhiteSpace(child["Description"]),
                               string.Format("Description field empty for {0}", child.Paths.FullPath));
                Assert.IsFalse(string.IsNullOrWhiteSpace(child["Longitude"]),
                               string.Format("Longitude field empty for {0}", child.Paths.FullPath));
                Assert.IsFalse(string.IsNullOrWhiteSpace(child["Latitude"]),
                               string.Format("Latitude field empty for {0}", child.Paths.FullPath));
                Assert.IsFalse(string.IsNullOrWhiteSpace(child["Altitude"]),
                               string.Format("Altitude field empty for {0}", child.Paths.FullPath));
            }

            // Check the contents of an individual item
            Item muiderSlotItem = imported.Axes.GetChild("Muiderslot");

            Assert.IsNotNull(muiderSlotItem, "Castle 'Muiderslot' was not found after import");
            Assert.IsTrue(
                muiderSlotItem["Description"].Contains(
                    "Muiderslot<br>Country: Netherlands<br>Region: Noord Holland<br>Place: Muiden"),
                "Castle 'Muiderslot' does not have a correct description");
            Assert.AreEqual("5.0718055556", muiderSlotItem["Longitude"]);
            Assert.AreEqual("52.33423055599999", muiderSlotItem["Latitude"]);
            Assert.AreEqual("0", muiderSlotItem["Altitude"]);

            Console.WriteLine(string.Format("=== SITECORE TREE STRUCTURE DUMP (for debugging) ==="));
            LogTreeStructure(Context.Database.GetRootItem());
        }
Exemplo n.º 3
0
        public void TestImageImport()
        {
            string sampleImage = ConfigurationManager.AppSettings["sampleimage"];

            SampleSitecoreLogic.ImportImage(sampleImage);

            // Get the imported media item
            var imported = new MediaItem(Context.Database.GetItem("/sitecore/media library/Cdm"));

            Assert.IsNotNull(imported, "Imported image could not be found");
            Assert.AreEqual("Image", imported.InnerItem.TemplateName);

            // Get the imported image data and put it in a memory stream
            var memoryStream = new MemoryStream();

            imported.GetMediaStream().CopyTo(memoryStream);

            Assert.IsTrue(
                FileUtil.ReadBinaryFile(sampleImage).SequenceEqual(memoryStream.ToArray()),
                "The imported image's content is different from the file");
        }