com.atlassian.confluence.it.content
Class ViewContentBean

java.lang.Object
  extended by com.atlassian.confluence.it.content.ViewContentBean

public class ViewContentBean
extends java.lang.Object

Represents a View page for a Page or News.


Field Summary
static java.lang.String ADD_MENU_LINK_ID
           
static java.lang.String REMOVE_CONTENT_MENU_LINK
           
static java.lang.String SHOW_COMMENTS_ID
           
protected  java.lang.String title
           
static java.lang.String VIEW_SOURCE_LINK_ID
           
protected  net.sourceforge.jwebunit.junit.WebTester webTester
           
 
Method Summary
 EditContentBean addComment()
           
 boolean canAddBlogPost()
          Returns true if the Add Blogpost link is present.
 boolean canAddComment()
          Returns true if the Add Comment link is present.
 boolean canAddPage()
          Returns true if the Add Page link is present.
 boolean canRemoveComment(java.lang.String commentId)
           
 boolean containsLinkTo(java.lang.String spaceKey, java.lang.String pageTitle)
           
 EditContentBean createBlogPost()
           
 EditContentBean createPage()
           
 EditContentBean edit()
           
 EditContentBean editBlogPost()
           
 EditContentBean editComment(java.lang.String commentId)
           
 void ensureCommentsAreShown()
           
 java.util.List<java.lang.String> getChildren()
          Returns the first 20 child page titles (if any) on the current page in the order they appear.
 java.util.List<CommentBean> getComments()
          Gets the first 20 top-level comments (if any) on the current page.
 java.lang.String getContent()
           
 CommentBean getFocusedComment()
           
 java.util.Date getRequestTime()
           
 java.lang.String getTitle()
           
 boolean isFavourite()
          Returns true if the unfavourite link is present, and false if the favourite link is present.
 boolean isViewable()
           
 boolean isWatching()
          Returns true if the unwatch link is present, and false if the watch link is present.
 boolean isWatchingSpace()
          Returns true if the space containing the content is being watched.
 boolean pageNotFound()
          Returns true if the "Page Not Found" screen is presented.
 void remove()
           
 void removeComment(java.lang.String commentId)
           
 EditContentBean replyToComment(java.lang.String commentId)
           
 void toggleWatch()
          Clicks the "Watch" link.
 ViewAttachmentsBean viewAttachments()
           
static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester tester)
          Factory method to return a ViewContentBean pointing at the current location of the web tester.
static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester, BlogPost blogPost)
           
static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester, long contentId)
          Factory method to return a ViewContentBean for the blog post with the given content ID.
static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester, java.lang.String spaceKey, java.lang.String postTitle)
          Factory method to return a ViewContentBean for the given post and space.
 ContentInfoBean viewInfo()
           
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester)
          Factory method to return a ViewContentBean pointing at the current location of the web tester.
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester, long contentId)
          Factory method to return a ViewContentBean for the page with the given content ID.
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester, Page page)
           
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester tester, Space space)
          View the home page of the given space.
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester, java.lang.String spaceKey)
          Factory method to return a ViewContentBean for the homepage of the given space.
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester, java.lang.String spaceKey, java.lang.String pageTitle)
          Factory method to return a ViewContentBean for the given page and space.
static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester, java.lang.String spaceKey, java.lang.String pageTitle, boolean commentsOn)
          Factory method to return a ViewContentBean for the given page and space, with comments specifically requested on or off.
static ViewContentBean viewPageWithNoDecorators(net.sourceforge.jwebunit.junit.WebTester webTester, Page page)
           
static ViewContentBean viewPersonalSpace(net.sourceforge.jwebunit.junit.WebTester webTester, java.lang.String username)
           
 void viewWatchingSpace()
          Clicks the "Watching Space" link on the Tools menu, which loads the Space Advanced page where space-level watching is administered.
 void viewWikiMarkup()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

webTester

protected final net.sourceforge.jwebunit.junit.WebTester webTester

VIEW_SOURCE_LINK_ID

public static final java.lang.String VIEW_SOURCE_LINK_ID
See Also:
Constant Field Values

SHOW_COMMENTS_ID

public static final java.lang.String SHOW_COMMENTS_ID
See Also:
Constant Field Values

ADD_MENU_LINK_ID

public static final java.lang.String ADD_MENU_LINK_ID
See Also:
Constant Field Values

REMOVE_CONTENT_MENU_LINK

public static final java.lang.String REMOVE_CONTENT_MENU_LINK
See Also:
Constant Field Values

title

protected final java.lang.String title
Method Detail

viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester)
Factory method to return a ViewContentBean pointing at the current location of the web tester.


viewBlogPost

public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester tester)
Factory method to return a ViewContentBean pointing at the current location of the web tester.


viewBlogPost

public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
                                           java.lang.String spaceKey,
                                           java.lang.String postTitle)
Factory method to return a ViewContentBean for the given post and space. The post is assumed to be posted today.


viewBlogPost

public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
                                           long contentId)
Factory method to return a ViewContentBean for the blog post with the given content ID.


viewBlogPost

public static ViewContentBean viewBlogPost(net.sourceforge.jwebunit.junit.WebTester webTester,
                                           BlogPost blogPost)

viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
                                       long contentId)
Factory method to return a ViewContentBean for the page with the given content ID.


viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
                                       java.lang.String spaceKey)
Factory method to return a ViewContentBean for the homepage of the given space.


viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
                                       java.lang.String spaceKey,
                                       java.lang.String pageTitle)
Factory method to return a ViewContentBean for the given page and space.


viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
                                       Page page)

viewPageWithNoDecorators

public static ViewContentBean viewPageWithNoDecorators(net.sourceforge.jwebunit.junit.WebTester webTester,
                                                       Page page)

viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester tester,
                                       Space space)
View the home page of the given space.

Parameters:
tester - needs to be logged in as a user with permission to see the space
space - of which the home page will be visited
Returns:
a ViewContentBean viewing the home page of the space.

viewPage

public static ViewContentBean viewPage(net.sourceforge.jwebunit.junit.WebTester webTester,
                                       java.lang.String spaceKey,
                                       java.lang.String pageTitle,
                                       boolean commentsOn)
Factory method to return a ViewContentBean for the given page and space, with comments specifically requested on or off.

Parameters:
commentsOn - specifies value of the showComments parameter

viewPersonalSpace

public static ViewContentBean viewPersonalSpace(net.sourceforge.jwebunit.junit.WebTester webTester,
                                                java.lang.String username)

getTitle

public java.lang.String getTitle()

getContent

public java.lang.String getContent()

createPage

public EditContentBean createPage()

createBlogPost

public EditContentBean createBlogPost()

edit

public EditContentBean edit()

editBlogPost

public EditContentBean editBlogPost()

remove

public void remove()

addComment

public EditContentBean addComment()

getComments

public java.util.List<CommentBean> getComments()
Gets the first 20 top-level comments (if any) on the current page.

Ensures the comments are shown before trying to retrieve anything, so may result in a page reload.

See Also:
TODO threading.

replyToComment

public EditContentBean replyToComment(java.lang.String commentId)

editComment

public EditContentBean editComment(java.lang.String commentId)

removeComment

public void removeComment(java.lang.String commentId)

viewAttachments

public ViewAttachmentsBean viewAttachments()

viewInfo

public ContentInfoBean viewInfo()

ensureCommentsAreShown

public void ensureCommentsAreShown()

getChildren

public java.util.List<java.lang.String> getChildren()
Returns the first 20 child page titles (if any) on the current page in the order they appear. Relies on the child page section being already expanded. If you want to test showing/hiding the children, you will need to use Selenium as this is done with javascript as of CONFDEV-1005


viewWikiMarkup

public void viewWikiMarkup()

toggleWatch

public void toggleWatch()
Clicks the "Watch" link.


viewWatchingSpace

public void viewWatchingSpace()
Clicks the "Watching Space" link on the Tools menu, which loads the Space Advanced page where space-level watching is administered.


isWatching

public boolean isWatching()
Returns true if the unwatch link is present, and false if the watch link is present. This does not include space-level watching.

Throws:
junit.framework.AssertionFailedError - if neither link is present (eg if space is watched).

isWatchingSpace

public boolean isWatchingSpace()
Returns true if the space containing the content is being watched. ie. Watching Space link present


isFavourite

public boolean isFavourite()
Returns true if the unfavourite link is present, and false if the favourite link is present.

Throws:
junit.framework.AssertionFailedError - if neither link is present.

canAddPage

public boolean canAddPage()
Returns true if the Add Page link is present.


canAddBlogPost

public boolean canAddBlogPost()
Returns true if the Add Blogpost link is present.


canAddComment

public boolean canAddComment()
Returns true if the Add Comment link is present.


canRemoveComment

public boolean canRemoveComment(java.lang.String commentId)

pageNotFound

public boolean pageNotFound()
Returns true if the "Page Not Found" screen is presented.


getRequestTime

public java.util.Date getRequestTime()

getFocusedComment

public CommentBean getFocusedComment()

isViewable

public boolean isViewable()

containsLinkTo

public boolean containsLinkTo(java.lang.String spaceKey,
                              java.lang.String pageTitle)


Copyright © 2003-2011 Atlassian. All Rights Reserved.