Esempio n. 1
0
 def create_component(self, name=None, owner=None, description=None):
     """Creates the specified component, with a random camel-cased name if
     none is provided.  Returns the name."""
     if name is None:
         name = random_unique_camel()
     component_url = self.url + "/admin/ticket/components"
     tc.go(component_url)
     tc.url(component_url)
     tc.formvalue('addcomponent', 'name', name)
     if owner is not None:
         tc.formvalue('addcomponent', 'owner', owner)
     tc.submit()
     # Verify the component appears in the component list
     tc.url(component_url)
     tc.find(name)
     tc.notfind(internal_error)
     if description is not None:
         tc.follow(r"\b%s\b" % name)
         tc.formvalue('modcomp', 'description', description)
         tc.submit('save')
         tc.url(component_url)
         tc.find("Your changes have been saved.")
         tc.notfind(internal_error)
     # TODO: verify the component shows up in the newticket page
     return name
Esempio n. 2
0
    def create_milestone(self, name=None, due=None):
        """Creates the specified milestone, with a random name if none is
        provided.  Returns the name of the milestone.
        """
        if name is None:
            name = random_unique_camel()
        milestone_url = self.url + "/admin/ticket/milestones"
        tc.go(milestone_url)
        tc.url(milestone_url)
        tc.formvalue('addmilestone', 'name', name)
        if due:
            # TODO: How should we deal with differences in date formats?
            tc.formvalue('addmilestone', 'duedate', due)
        tc.submit()
        tc.notfind(internal_error)
        tc.notfind('Milestone .* already exists')
        tc.url(milestone_url)
        tc.find(name)

        # Make sure it's on the roadmap.
        tc.follow(r"\bRoadmap\b")
        tc.url(self.url + "/roadmap")
        tc.find('Milestone:.*%s' % name)
        tc.follow(r"\b%s\b" % name)
        tc.url('%s/milestone/%s' % (self.url, unicode_quote(name)))
        if not due:
            tc.find('No date set')

        return name
Esempio n. 3
0
 def create_component(self, name=None, owner=None, description=None):
     """Creates the specified component, with a random camel-cased name if
     none is provided.  Returns the name."""
     if name is None:
         name = random_unique_camel()
     component_url = self.url + "/admin/ticket/components"
     tc.go(component_url)
     tc.url(component_url)
     tc.formvalue('addcomponent', 'name', name)
     if owner is not None:
         tc.formvalue('addcomponent', 'owner', owner)
     tc.submit()
     # Verify the component appears in the component list
     tc.url(component_url)
     tc.find(name)
     tc.notfind(internal_error)
     if description is not None:
         tc.follow(r"\b%s\b" % name)
         tc.formvalue('edit', 'description', description)
         tc.submit('save')
         tc.url(component_url)
         tc.find("Your changes have been saved.")
         tc.notfind(internal_error)
     # TODO: verify the component shows up in the newticket page
     return name
Esempio n. 4
0
 def go_to_wiki(self, name):
     """Surf to the page for the given wiki page."""
     # Used to go based on a quickjump, but if the wiki pagename isn't
     # camel case, that won't work.
     wiki_url = self.url + '/wiki/%s' % name
     tc.go(wiki_url)
     tc.url(wiki_url)
Esempio n. 5
0
 def go_to_wiki(self, name):
     """Surf to the page for the given wiki page."""
     # Used to go based on a quickjump, but if the wiki pagename isn't
     # camel case, that won't work.
     wiki_url = self.url + '/wiki/%s' % name
     tc.go(wiki_url)
     tc.url(wiki_url)
Esempio n. 6
0
    def create_milestone(self, name=None, due=None):
        """Creates the specified milestone, with a random name if none is
        provided.  Returns the name of the milestone.
        """
        if name == None:
            name = random_unique_camel()
        milestone_url = self.url + "/admin/ticket/milestones"
        tc.go(milestone_url)
        tc.url(milestone_url)
        tc.formvalue('addmilestone', 'name', name)
        if due:
            # TODO: How should we deal with differences in date formats?
            tc.formvalue('addmilestone', 'duedate', due)
        tc.submit()
        tc.notfind(internal_error)
        tc.notfind('Milestone .* already exists')
        tc.url(milestone_url)
        tc.find(name)

        # Make sure it's on the roadmap.
        tc.follow('Roadmap')
        tc.url(self.url + "/roadmap")
        tc.find('Milestone:.*%s' % name)
        tc.follow(name)
        tc.url('%s/milestone/%s' % (self.url, unicode_quote(name)))
        if not due:
            tc.find('No date set')

        return name
Esempio n. 7
0
 def start(self):
     """Starts the webserver, and waits for it to come up."""
     args = [
         sys.executable,
         os.path.join(self.trac_src, 'trac', 'web', 'standalone.py')
     ]
     options = ["--port=%s" % self.port, "-s", "--hostname=127.0.0.1",
                "--basic-auth=trac,%s," % self.htpasswd]
     if 'TRAC_TEST_TRACD_OPTIONS' in os.environ:
         options += os.environ['TRAC_TEST_TRACD_OPTIONS'].split()
     server = Popen(args + options + [self.tracdir],
                    stdout=self.logfile, stderr=self.logfile,
                    close_fds=close_fds,
                    cwd=self.command_cwd)
     self.pid = server.pid
     # Verify that the url is ok
     timeout = 30
     while timeout:
         try:
             tc.go(self.url)
             break
         except ConnectError:
             time.sleep(1)
         timeout -= 1
     else:
         raise Exception('Timed out waiting for server to start.')
     tc.url(self.url)
Esempio n. 8
0
 def start(self):
     """Starts the webserver, and waits for it to come up."""
     if 'FIGLEAF' in os.environ:
         exe = os.environ['FIGLEAF']
         if ' ' in exe: # e.g. 'coverage run'
             args = exe.split()
         else:
             args = [exe]
     else:
         args = [sys.executable]
     options = ["--port=%s" % self.port, "-s", "--hostname=127.0.0.1",
                "--basic-auth=trac,%s," % self.htpasswd]
     if 'TRAC_TEST_TRACD_OPTIONS' in os.environ:
         options += os.environ['TRAC_TEST_TRACD_OPTIONS'].split()
     args.append(os.path.join(self.trac_src, 'trac', 'web',
                              'standalone.py'))
     server = Popen(args + options + [self.tracdir],
                    stdout=logfile, stderr=logfile,
                    close_fds=close_fds,
                    cwd=self.command_cwd,
                   )
     self.pid = server.pid
     # Verify that the url is ok
     timeout = 30
     while timeout:
         try:
             tc.go(self.url)
             break
         except ConnectError:
             time.sleep(1)
         timeout -= 1
     else:
         raise Exception('Timed out waiting for server to start.')
     tc.url(self.url)
Esempio n. 9
0
 def clone_ticket(self, ticketid):
     """Create a clone of the given ticket id using the clone button."""
     ticket_url = self.url + '/ticket/%s' % ticketid
     tc.go(ticket_url)
     tc.url(ticket_url)
     tc.formvalue('clone', 'clone', 'Clone')
     tc.submit()
     # we should be looking at the newly created ticket
     self.ticketcount += 1
     tc.url(self.url + "/ticket/%s" % self.ticketcount)
     return self.ticketcount
Esempio n. 10
0
 def clone_ticket(self, ticketid):
     """Create a clone of the given ticket id using the clone button."""
     ticket_url = self.url + '/ticket/%s' % ticketid
     tc.go(ticket_url)
     tc.url(ticket_url)
     tc.formvalue('clone', 'clone', 'Clone')
     tc.submit()
     # we should be looking at the newly created ticket
     self.ticketcount += 1
     tc.url(self.url + "/ticket/%s" % self.ticketcount)
     return self.ticketcount
Esempio n. 11
0
 def _ensure_web_access_is_working(self):
     timeout = 30
     while timeout:
         try:
             tc.go(self.url)
             break
         except (ConnectError, BrowserStateError):
             time.sleep(1)
         timeout -= 1
     else:
         raise Exception('Timed out waiting for server to start.')
     tc.url(self.url)
Esempio n. 12
0
 def _ensure_web_access_is_working(self):
     timeout = 30
     while timeout:
         try:
             tc.go(self.url)
             break
         except (ConnectError, BrowserStateError):
             time.sleep(1)
         timeout -= 1
     else:
         raise Exception('Timed out waiting for server to start.')
     tc.url(self.url)
Esempio n. 13
0
 def create_version(self, name=None, releasetime=None):
     """Create a new version.  The name defaults to a random camel-cased
     word if not provided."""
     version_admin = self.url + "/admin/ticket/versions"
     if name == None:
         name = random_unique_camel()
     tc.go(version_admin)
     tc.url(version_admin)
     tc.formvalue('addversion', 'name', name)
     if releasetime != None:
         tc.formvalue('addversion', 'time', releasetime)
     tc.submit()
     tc.url(version_admin)
     tc.find(name)
     tc.notfind(internal_error)
Esempio n. 14
0
 def create_version(self, name=None, releasetime=None):
     """Create a new version.  The name defaults to a random camel-cased
     word if not provided."""
     version_admin = self.url + "/admin/ticket/versions"
     if name is None:
         name = random_unique_camel()
     tc.go(version_admin)
     tc.url(version_admin)
     tc.formvalue('addversion', 'name', name)
     if releasetime is not None:
         tc.formvalue('addversion', 'time', releasetime)
     tc.submit()
     tc.url(version_admin)
     tc.find(name)
     tc.notfind(internal_error)
Esempio n. 15
0
 def create_enum(self, kind, name=None):
     """Helper to create the specified enum (used for ``priority``,
     ``severity``, etc). If no name is given, a unique random word is used.
     The name is returned.
     """
     if name == None:
         name = random_unique_camel()
     priority_url = self.url + "/admin/ticket/" + kind
     tc.go(priority_url)
     tc.url(priority_url)
     tc.formvalue('addenum', 'name', name)
     tc.submit()
     tc.url(priority_url)
     tc.find(name)
     tc.notfind(internal_error)
     return name
Esempio n. 16
0
 def create_enum(self, kind, name=None):
     """Helper to create the specified enum (used for ``priority``,
     ``severity``, etc). If no name is given, a unique random word is used.
     The name is returned.
     """
     if name is None:
         name = random_unique_camel()
     priority_url = self.url + "/admin/ticket/" + kind
     tc.go(priority_url)
     tc.url(priority_url)
     tc.formvalue('addenum', 'name', name)
     tc.submit()
     tc.url(priority_url)
     tc.find(name)
     tc.notfind(internal_error)
     return name
Esempio n. 17
0
    def go_to_report(self, id, args=None):
        """Surf to the specified report.

        Assumes the report exists. Report variables will be appended if
        specified.

        :param id: id of the report
        :param args: may optionally specify a dictionary of arguments to
                     be encoded as a query string
        """
        report_url = self.url + "/report/%s" % id
        if args:
            arglist = []
            for param, value in args.items():
                arglist.append('%s=%s' % (param.upper(), unicode_quote(value)))
            report_url += '?' + '&'.join(arglist)
        tc.go(report_url)
        tc.url(report_url.encode('string-escape').replace('?', '\?'))
Esempio n. 18
0
 def create_component(self, name=None, user=None):
     """Creates the specified component, with a random camel-cased name if
     none is provided.  Returns the name."""
     if name == None:
         name = random_unique_camel()
     component_url = self.url + "/admin/ticket/components"
     tc.go(component_url)
     tc.url(component_url)
     tc.formvalue('addcomponent', 'name', name)
     if user != None:
         tc.formvalue('addcomponent', 'owner', user)
     tc.submit()
     # Verify the component appears in the component list
     tc.url(component_url)
     tc.find(name)
     tc.notfind(internal_error)
     # TODO: verify the component shows up in the newticket page
     return name
Esempio n. 19
0
    def go_to_report(self, id, args=None):
        """Surf to the specified report.

        Assumes the report exists. Report variables will be appended if
        specified.

        :param id: id of the report
        :param args: may optionally specify a dictionary of arguments to
                     be encoded as a query string
        """
        report_url = self.url + "/report/%s" % id
        if args:
            arglist = []
            for param, value in args.items():
                arglist.append('%s=%s' % (param.upper(), unicode_quote(value)))
            report_url += '?' + '&'.join(arglist)
        tc.go(report_url)
        tc.url(report_url.encode('string-escape').replace('?', '\?'))
Esempio n. 20
0
 def create_component(self, name=None, user=None):
     """Creates the specified component, with a random camel-cased name if
     none is provided.  Returns the name."""
     if name == None:
         name = random_unique_camel()
     component_url = self.url + "/admin/ticket/components"
     tc.go(component_url)
     tc.url(component_url)
     tc.formvalue('addcomponent', 'name', name)
     if user != None:
         tc.formvalue('addcomponent', 'owner', user)
     tc.submit()
     # Verify the component appears in the component list
     tc.url(component_url)
     tc.find(name)
     tc.notfind(internal_error)
     # TODO: verify the component shows up in the newticket page
     return name
Esempio n. 21
0
 def login(self, username):
     """Login as the given user"""
     tc.add_auth('', self.url + '/login', username, username)
     self.go_to_front()
     tc.find("Login")
     url = self.url.replace('://',
                            '://{0}:{0}@'.format(unicode_quote(username)))
     url = '%s/login?referer=%s' % (url, unicode_quote(self.url))
     tc.go(url)
     tc.notfind(internal_error)
     tc.url(self.url, regexp=False)
     # We've provided authentication info earlier, so this should
     # redirect back to the base url.
     tc.find(
         'logged in as[ \t\n]+<span class="trac-author-user">%s</span>' %
         username)
     tc.find("Logout")
     tc.url(self.url, regexp=False)
     tc.notfind(internal_error)
Esempio n. 22
0
    def create_wiki_page(self, page, content=None):
        """Creates the specified wiki page, with random content if none is
        provided.
        """
        if content == None:
            content = random_page()
        page_url = self.url + "/wiki/" + page
        tc.go(page_url)
        tc.url(page_url)
        tc.find("The page %s does not exist." % page)
        tc.formvalue('modifypage', 'action', 'edit')
        tc.submit()
        tc.url(page_url + '\\?action=edit')

        tc.formvalue('edit', 'text', content)
        tc.submit('save')
        tc.url(page_url+'$')

        # verify the event shows up in the timeline
        self.go_to_timeline()
        tc.formvalue('prefs', 'wiki', True)
        tc.submit()
        tc.find(page + ".*created")
Esempio n. 23
0
    def create_wiki_page(self, page, content=None):
        """Creates the specified wiki page, with random content if none is
        provided.
        """
        if content == None:
            content = random_page()
        page_url = self.url + "/wiki/" + page
        tc.go(page_url)
        tc.url(page_url)
        tc.find("The page %s does not exist." % page)
        tc.formvalue('modifypage', 'action', 'edit')
        tc.submit()
        tc.url(page_url + '\\?action=edit')

        tc.formvalue('edit', 'text', content)
        tc.submit('save')
        tc.url(page_url + '$')

        # verify the event shows up in the timeline
        self.go_to_timeline()
        tc.formvalue('prefs', 'wiki', True)
        tc.submit()
        tc.find(page + ".*created")
Esempio n. 24
0
 def go_to_url(self, url):
     tc.go(url)
     tc.url(url)
     tc.notfind(internal_error)
Esempio n. 25
0
 def go_to_url(self, url):
     if url.startswith('/'):
         url = self.url + url
     tc.go(url)
     tc.url(url, regexp=False)
     tc.notfind(internal_error)
Esempio n. 26
0
 def go_to_timeline(self):
     """Surf to the timeline page."""
     tc.go(self.url + '/timeline')
Esempio n. 27
0
 def go_to_url(self, url):
     tc.go(url)
     tc.url(url)
     tc.notfind(internal_error)
Esempio n. 28
0
 def go_to_ticket(self, ticketid):
     """Surf to the page for the given ticket ID.  Assumes ticket
     exists."""
     ticket_url = self.url + "/ticket/%s" % ticketid
     tc.go(ticket_url)
     tc.url(ticket_url)
Esempio n. 29
0
 def go_to_front(self):
     """Go to the Trac front page"""
     tc.go(self.url)
     tc.url(self.url)
     tc.notfind(internal_error)
Esempio n. 30
0
 def go_to_front(self):
     """Go to the Trac front page"""
     tc.go(self.url)
     tc.url(self.url)
     tc.notfind(internal_error)
Esempio n. 31
0
 def go_to_ticket(self, ticketid):
     """Surf to the page for the given ticket ID.  Assumes ticket
     exists."""
     ticket_url = self.url + "/ticket/%s" % ticketid
     tc.go(ticket_url)
     tc.url(ticket_url)
Esempio n. 32
0
 def go_to_url(self, url):
     tc.go(url)
     tc.url(re.escape(url))
     tc.notfind(internal_error)
Esempio n. 33
0
 def go_to_url(self, url):
     tc.go(url)
     tc.url(re.escape(url))
     tc.notfind(internal_error)