blob: f83cfe99ae9a3af4789e882394b0ca7d3500cbea [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import unittest
from mock import Mock
from allura import model as M
from allura.app import SitemapEntry
class TestProject(unittest.TestCase):
def test_grouped_navbar_entries(self):
p = M.Project()
sitemap_entries = [
SitemapEntry('bugs', url='bugs url', tool_name='Tickets'),
SitemapEntry('wiki', url='wiki url', tool_name='Wiki'),
SitemapEntry('discuss', url='discuss url', tool_name='Discussion'),
SitemapEntry('subproject', url='subproject url'),
SitemapEntry('features', url='features url', tool_name='Tickets'),
SitemapEntry('help', url='help url', tool_name='Discussion'),
SitemapEntry('support reqs', url='support url', tool_name='Tickets'),
]
p.url = Mock(return_value='proj_url/')
p.sitemap = Mock(return_value=sitemap_entries)
entries = p.grouped_navbar_entries()
expected = [
(u'Tickets \u25be', 'proj_url/_list/tickets', 3),
(u'wiki', 'wiki url', 0),
(u'Discussion \u25be', 'proj_url/_list/discussion', 2),
(u'subproject', 'subproject url', 0),
]
expected_ticket_urls = ['bugs url', 'features url', 'support url']
actual = [(e.label, e.url, len(e.matching_urls)) for e in entries]
self.assertEqual(expected, actual)
self.assertEqual(entries[0].matching_urls, expected_ticket_urls)
def test_grouped_navbar_threshold(self):
p = M.Project()
sitemap_entries = [
SitemapEntry('bugs', url='bugs url', tool_name='Tickets'),
SitemapEntry('wiki', url='wiki url', tool_name='Wiki'),
SitemapEntry('discuss', url='discuss url', tool_name='Discussion'),
SitemapEntry('subproject', url='subproject url'),
SitemapEntry('features', url='features url', tool_name='Tickets'),
SitemapEntry('help', url='help url', tool_name='Discussion'),
SitemapEntry('support reqs', url='support url', tool_name='Tickets'),
]
p.url = Mock(return_value='proj_url/')
p.sitemap = Mock(return_value=sitemap_entries)
p.tool_data['allura'] = {'grouping_threshold': 2}
entries = p.grouped_navbar_entries()
expected = [
(u'Tickets \u25be', 'proj_url/_list/tickets', 3),
(u'wiki', 'wiki url', 0),
(u'discuss', 'discuss url', 0),
(u'subproject', 'subproject url', 0),
(u'help', 'help url', 0),
]
expected_ticket_urls = ['bugs url', 'features url', 'support url']
actual = [(e.label, e.url, len(e.matching_urls)) for e in entries]
self.assertEqual(expected, actual)
self.assertEqual(entries[0].matching_urls, expected_ticket_urls)