Skip to content

Commit

Permalink
improve(material_integrations): add minimal test against material blo…
Browse files Browse the repository at this point in the history
…g integration
  • Loading branch information
Guts committed Dec 2, 2024
1 parent d45c303 commit 0a67ba6
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/fixtures/mkdocs_items_material_blog_enabled.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
site_name: Test RSS Plugin
site_description: Test RSS with blog plugin also enabled
site_url: https://guts.github.io/mkdocs-rss-plugin

plugins:
- blog:
blog_dir: blog
- rss

theme:
name: material
60 changes: 60 additions & 0 deletions tests/test_integrations_material_blog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#! python3 # noqa E265

"""Usage from the repo root folder:
.. code-block:: python
# for whole test
python -m unittest tests.test_build
"""

# #############################################################################
# ########## Libraries #############
# ##################################

# Standard library
import unittest
from logging import DEBUG, getLogger
from pathlib import Path

# 3rd party
from mkdocs.config import load_config

# package
from mkdocs_rss_plugin.integrations.theme_material_blog_plugin import (
IntegrationMaterialBlog,
)

# test suite
from tests.base import BaseTest

# #############################################################################
# ########## Classes ###############
# ##################################

logger = getLogger(__name__)
logger.setLevel(DEBUG)


class TestRssPluginIntegrationsMaterialBlog(BaseTest):
"""Test integration of Material Blog plugin with RSS plugin."""

# -- TESTS ---------------------------------------------------------
def test_plugin_config_blog_enabled(self):
# default reference
cfg_mkdocs = load_config(
str(Path("tests/fixtures/mkdocs_items_material_blog_enabled.yml").resolve())
)

integration_social_cards = IntegrationMaterialBlog(mkdocs_config=cfg_mkdocs)
self.assertTrue(integration_social_cards.IS_THEME_MATERIAL)
self.assertTrue(integration_social_cards.IS_BLOG_PLUGIN_ENABLED)
self.assertTrue(integration_social_cards.IS_ENABLED)


# ##############################################################################
# ##### Stand alone program ########
# ##################################
if __name__ == "__main__":
unittest.main()

0 comments on commit 0a67ba6

Please sign in to comment.