Exemplo n.º 1
0
 public void GetByIdMergeTitleTest()
 {
     DependencyManager.CachingService = new InProcCachingService();
     FileSystemRepository repo = new FileSystemRepository();
     ContentItem item = repo.GetById(new ValidUrl() { SiteId = 1, Id = Guid.Parse("A1ED7FDF-498D-43EE-BC81-9E23F0294C57"), View = "Layout-Default" }, ContentViewType.PUBLISH);
     Assert.IsNotNull(item);
     Assert.AreEqual("I am actual title", item.Head.Title);
     Assert.AreEqual("Explo Travel", item.Head.KeyWords);
     Assert.AreEqual("search cheap flights", item.Head.Description);
     Assert.AreEqual("no tags", item.Head.PageMetaTags);
 }
Exemplo n.º 2
0
 public void GetByIdTest()
 {
     DependencyManager.CachingService = new InProcCachingService();
     FileSystemRepository repo = new FileSystemRepository();
     ContentItem item = repo.GetById(new ValidUrl() { SiteId = 1, Id = Guid.Parse("2ECA40A9-E580-4589-B89B-17458B61590D"), View = "Layout-Default" },ContentViewType.PUBLISH);
     Assert.IsNotNull(item);
     Assert.AreEqual("Explo Travel - Demo", item.Head.Title);
     Assert.AreEqual("Explo Travel", item.Head.KeyWords);
     Assert.AreEqual("search cheap flights", item.Head.Description);
     Assert.AreEqual("no tags", item.Head.PageMetaTags);
 }
Exemplo n.º 3
0
 public void GetByIdMergeDescriptionTest()
 {
     DependencyManager.CachingService = new InProcCachingService();
     FileSystemRepository repo = new FileSystemRepository();
     ContentItem item = repo.GetById(new ValidUrl() { SiteId = 1, Id = Guid.Parse("A1ED7FDF-498D-43EE-BC81-9E23F0294C59"), View = "Layout-Default" }, ContentViewType.PUBLISH);
     Assert.IsNotNull(item);
     //uncomment below line if you want to individual run this test.
     //Assert.AreEqual("Explo Travel - Demo", item.Head.Title);
     //Assert.AreEqual("Explo Travel", item.Head.KeyWords);
     Assert.AreEqual("I am actual Description", item.Head.Description);
     Assert.AreEqual("no tags", item.Head.PageMetaTags);
 }