コード例 #1
0
 def test_expand_db_attributes_not_for_editor(self):
     result = DocumentLinkHandler.expand_db_attributes(
         {'id': 1},
         False
     )
     self.assertEqual(result,
                      '<a href="/documents/1/test.pdf">')
コード例 #2
0
 def test_expand_db_attributes_for_editor(self):
     result = DocumentLinkHandler.expand_db_attributes(
         {'id': 1},
         True
     )
     self.assertEqual(result,
                      '<a data-linktype="document" data-id="1" href="/documents/1/test.pdf">')
コード例 #3
0
 def test_expand_db_attributes_with_missing_id(self):
     result = FrontendDocumentLinkHandler.expand_db_attributes({})
     self.assertEqual(result, '<a>')
コード例 #4
0
 def test_expand_db_attributes_document_does_not_exist(self):
     result = FrontendDocumentLinkHandler.expand_db_attributes({'id': 0})
     self.assertEqual(result, '<a>')
コード例 #5
0
 def test_expand_db_attributes_for_frontend(self):
     result = FrontendDocumentLinkHandler.expand_db_attributes({'id': 1})
     self.assertEqual(result, '<a href="/documents/1/test.pdf">')
コード例 #6
0
ファイル: test_rich_text.py プロジェクト: melody40/monorepo
 def test_get_db_attributes(self):
     soup = BeautifulSoup('<a data-id="test-id">foo</a>', 'html5lib')
     tag = soup.a
     result = DocumentLinkHandler.get_db_attributes(tag)
     self.assertEqual(result, {'id': 'test-id'})
コード例 #7
0
ファイル: test_rich_text.py プロジェクト: melody40/monorepo
 def test_expand_db_attributes_for_editor_with_missing_id(self):
     result = DocumentLinkHandler.expand_db_attributes({})
     self.assertEqual(result, '<a data-linktype="document">')
コード例 #8
0
ファイル: test_rich_text.py プロジェクト: melody40/monorepo
 def test_expand_db_attributes_for_editor_preserves_id_of_nonexistent_document(
         self):
     result = DocumentLinkHandler.expand_db_attributes({'id': 0})
     self.assertEqual(result, '<a data-linktype="document" data-id="0">')
コード例 #9
0
ファイル: test_rich_text.py プロジェクト: Proper-Job/wagtail
 def test_expand_db_attributes_with_missing_id(self):
     result = FrontendDocumentLinkHandler.expand_db_attributes({})
     self.assertEqual(result, '<a>')
コード例 #10
0
ファイル: test_rich_text.py プロジェクト: Proper-Job/wagtail
 def test_expand_db_attributes_document_does_not_exist(self):
     result = FrontendDocumentLinkHandler.expand_db_attributes({'id': 0})
     self.assertEqual(result, '<a>')
コード例 #11
0
ファイル: test_rich_text.py プロジェクト: Proper-Job/wagtail
 def test_expand_db_attributes_for_frontend(self):
     result = FrontendDocumentLinkHandler.expand_db_attributes({'id': 1})
     self.assertEqual(
         result,
         '<a href="/documents/1/test.pdf">'
     )
コード例 #12
0
ファイル: test_rich_text.py プロジェクト: morris-tech/wagtail
 def test_get_db_attributes(self):
     soup = BeautifulSoup('<a data-id="test-id">foo</a>', 'html5lib')
     tag = soup.a
     result = DocumentLinkHandler.get_db_attributes(tag)
     self.assertEqual(result,
                      {'id': 'test-id'})