예제 #1
0
def handler_ready_shortcut(sample_fixture_name, tempdir_name,
                           minimal_basic_settings, fixtures_settings,
                           temp_builds_dir):
    """
    Get everything ready to return a fully usable handler and settings
    """
    basepath = temp_builds_dir.join(tempdir_name)
    projectdir = os.path.join(basepath.strpath, sample_fixture_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path, sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Get basic sample settings, builder, assets environment and page views
    settings = minimal_basic_settings(projectdir)
    assets_env = register_assets(settings)
    pages_builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)

    # Fill registry
    pages_builder.scan_bulk(pages_map.PAGES)

    handler = AssetsWatchEventHandler(settings, assets_env, pages_builder,
                                         **settings.WATCHER_ASSETS_PATTERNS)

    return settings, handler
예제 #2
0
def build_command(context, basedir, settings_name):
    """
    Build project pages
    """
    # Set project before to be able to load its modules
    setup_project(basedir, settings_name)

    # Load current project settings and page map
    settings = import_settings_module(settings_name, basedir=basedir)
    # In test environment, force the module reload to avoid previous test cache to be
    # used (since the module have the same path).
    if context.obj["test_env"]:
        settings = importlib.reload(settings)

    settings = load_settings(settings)

    views = import_pages_module(settings.PAGES_MAP, basedir=basedir)
    if context.obj["test_env"]:
        views = importlib.reload(views)

    # Debug output
    display_settings(
        settings,
        ("DEBUG", "PROJECT_DIR", "SOURCES_DIR", "TEMPLATES_DIR",
         "LOCALES_DIR"),
    )

    builder_interface(settings, views)
예제 #3
0
파일: build.py 프로젝트: sveetch/Optimus
def build_command(context, basedir, settings_name):
    """
    Build project pages
    """
    # Set required environment variables to load settings
    if PROJECT_DIR_ENVVAR not in os.environ \
       or not os.environ[PROJECT_DIR_ENVVAR]:
        os.environ[PROJECT_DIR_ENVVAR] = basedir
    if SETTINGS_NAME_ENVVAR not in os.environ \
       or not os.environ[SETTINGS_NAME_ENVVAR]:
        os.environ[SETTINGS_NAME_ENVVAR] = settings_name

    # Load current project settings
    from optimus.conf.registry import settings

    # Debug output
    display_settings(settings, ('DEBUG', 'PROJECT_DIR', 'SOURCES_DIR',
                                'TEMPLATES_DIR', 'LOCALES_DIR'))

    initialize(settings)

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=basedir)

    # Proceed to page building from registered pages
    builder.build_bulk(pages_map.PAGES)
예제 #4
0
파일: 05_scan.py 프로젝트: sveetch/Optimus
def test_scan_bulk(minimal_basic_settings, fixtures_settings, temp_builds_dir,
                    sample_fixture_name, attempted_templates):
    """
    Scan page templates all pages

    This will only works for sample fixtures that use the same as
    'basic_template'.
    """
    basepath = temp_builds_dir.join('builder_scan_bulk_{}'.format(sample_fixture_name))
    project_name = sample_fixture_name
    projectdir = os.path.join(basepath.strpath, project_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path, sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Get basic sample settings
    settings = minimal_basic_settings(projectdir)

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)

    # Collect finded templates for each defined page view
    knowed = builder.scan_bulk(pages_map.PAGES)

    assert sorted(list(knowed)) == attempted_templates
예제 #5
0
def test_build_bulk(
    minimal_basic_settings,
    fixtures_settings,
    reset_syspath,
    temp_builds_dir,
    sample_fixture_name,
    attempted_destinations,
):
    """
    Build all pages in one bulk action

    Since 'build_item' test allready compare builded file, we dont do it again
    here, just check returned paths
    """
    basepath = temp_builds_dir.join(
        "builder_build_bulk_{}".format(sample_fixture_name))
    projectdir = os.path.join(basepath.strpath, sample_fixture_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path,
                               sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Setup project
    setup_project(projectdir, "dummy_value")

    # Get basic sample settings
    settings = minimal_basic_settings(projectdir)

    # Define a dummy filter to test filter registration and usage
    settings.JINJA_FILTERS = {"dummy_filter": DummyFilter}

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)
    # NOTE: We need to force reloading importation else the previous import settings
    #       with different values, is still re-used
    pages_map = importlib.reload(pages_map)

    # Collect finded templates for each defined page view
    buildeds = builder.build_bulk(pages_map.PAGES)

    # Check every attempted file has been created (promise)
    assert buildeds == [
        os.path.join(settings.PUBLISH_DIR, path)
        for path in attempted_destinations
    ]

    # Check promised builded file exists
    for dest in attempted_destinations:
        absdest = os.path.join(settings.PUBLISH_DIR, dest)
        assert os.path.exists(absdest) is True

    # Cleanup sys.path for next tests
    reset_syspath(projectdir)
예제 #6
0
def test_get_translation(i18n_template_settings, fixtures_settings,
                         reset_syspath, temp_builds_dir, caplog):
    """
    Start with default env then use 'get_environnement' to get another one
    with only one dummy extension
    """
    basepath = temp_builds_dir.join("builder_get_translation")
    project_name = "i18n_sample"
    projectdir = os.path.join(basepath.strpath, project_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path,
                               "i18n_template")
    shutil.copytree(templatedir, projectdir)

    with caplog.at_level(logging.WARNING, logger="optimus"):
        assert os.path.exists(projectdir) is True

        settings = i18n_template_settings(projectdir)

        assert settings.SITE_NAME == "basic_i18n"

        # Init builder with default environment
        builder = PageBuilder(settings)
        # Ensure i18n is enabled
        assert list(builder.jinja_env.extensions.keys()) == [
            "jinja2.ext.InternationalizationExtension",
        ]

        setup_project(projectdir, "dummy_value", set_envvar=False)

        # Define settings to view afterwards
        assert hasattr(settings, "PAGES_MAP") is True
        pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)
        for pageview in pages_map.PAGES:
            pageview.settings = settings
        setattr(settings, "PAGES", pages_map.PAGES)

        # Get enabled catalog lang from enabled page views
        translations = []
        for item in settings.PAGES:
            t = builder.get_translation_for_item(item)
            translations.append(t.info()["language-team"])

        assert translations == [
            "en_US <*****@*****.**>",
            "fr_FR <*****@*****.**>",
        ]

    # Cleanup sys.path for next tests
    reset_syspath(projectdir)
예제 #7
0
파일: watch.py 프로젝트: sveetch/Optimus
def watch_command(context, basedir, settings_name):
    """
    Watch for changes in project sources to automatically build project
    ressources
    """
    logger = logging.getLogger("optimus")

    # Set project before to be able to load its modules
    setup_project(basedir, settings_name)

    # Load current project settings and page map
    settings = import_settings_module(settings_name, basedir=basedir)
    # In test environment, force the module reload to avoid previous test cache to be
    # used (since the module have the same path).
    if context.obj["test_env"]:
        settings = importlib.reload(settings)

    settings = load_settings(settings)

    views = import_pages_module(settings.PAGES_MAP, basedir=basedir)
    if context.obj["test_env"]:
        views = importlib.reload(views)

    # Debug output
    display_settings(
        settings,
        ("DEBUG", "PROJECT_DIR", "SOURCES_DIR", "TEMPLATES_DIR", "LOCALES_DIR"),
    )

    logger.debug("Trigger pages build to start")
    build_env = builder_interface(settings, views)

    # Init and configure observer with events
    observer = watcher_interface(settings, views, build_env)

    logger.warning("Starting to watch sources, use CTRL+C to stop it")
    # Do not start observer during tests since we cannot manage interruption and
    # watcher threads
    if not context.obj["test_env"]:
        observer.start()
        try:
            while True:
                time.sleep(1)
        except KeyboardInterrupt:
            logger.warning("Stopping watcher..")
            observer.stop()
        observer.join()
예제 #8
0
파일: 05_scan.py 프로젝트: sveetch/Optimus
def test_scan_item(
    minimal_basic_settings,
    fixtures_settings,
    reset_syspath,
    temp_builds_dir,
    sample_fixture_name,
    attempted_templates,
):
    """
    Scan page templates for each page

    This will only works for sample fixtures that use the same as
    'basic_template'.
    """
    basepath = temp_builds_dir.join("builder_scan_item_{}".format(sample_fixture_name))
    project_name = sample_fixture_name
    projectdir = os.path.join(basepath.strpath, project_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path, sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Setup project
    setup_project(projectdir, "dummy_value")

    # Get basic sample settings
    settings = minimal_basic_settings(projectdir)

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)
    # NOTE: We need to force reloading importation else the previous import settings
    #       with different values, is still re-used
    pages_map = importlib.reload(pages_map)

    # Collect finded templates for each defined page view
    knowed = set([])
    for pageview in pages_map.PAGES:
        found = builder.scan_item(pageview)
        knowed.update(found)

    # We dont really care about order, so aply default sorting
    assert sorted(list(knowed)) == attempted_templates

    # Cleanup sys.path for next tests
    reset_syspath(projectdir)
예제 #9
0
def test_get_translation(i18n_template_settings, fixtures_settings,
                         temp_builds_dir, caplog):
    """
    Start with default env then use 'get_environnement' to get another one
    with only one dummy extension
    """
    basepath = temp_builds_dir.join('builder_get_translation')
    project_name = 'i18n_sample'
    projectdir = os.path.join(basepath.strpath, project_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path, 'i18n_template')
    shutil.copytree(templatedir, projectdir)

    with caplog.at_level(logging.WARNING, logger='optimus'):
        assert os.path.exists(projectdir) == True

        settings = i18n_template_settings(projectdir)

        assert settings.SITE_NAME == 'basic_i18n'

        # Init builder with default environment
        builder = PageBuilder(settings)
        # Ensure i18n is enabled
        assert list(builder.jinja_env.extensions.keys()) == [
            'jinja2.ext.InternationalizationExtension',
        ]

        # Define settings to view afterwards
        assert hasattr(settings, 'PAGES_MAP') == True
        pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)
        for pageview in pages_map.PAGES:
            pageview.settings = settings
        setattr(settings, 'PAGES', pages_map.PAGES)

        # Get enabled catalog lang from enabled page views
        translations = []
        for item in settings.PAGES:
            t = builder.get_translation_for_item(item)
            translations.append(t.info()['language-team'])

        assert translations == [
            'en_US <*****@*****.**>',
            'fr_FR <*****@*****.**>',
        ]
예제 #10
0
def handler_ready_shortcut(
    sample_fixture_name,
    tempdir_name,
    minimal_basic_settings,
    fixtures_settings,
    temp_builds_dir,
    reset_fixture,
):
    """
    Get everything ready to return a fully usable handler and settings
    """
    basepath = temp_builds_dir.join(tempdir_name)
    projectdir = os.path.join(basepath.strpath, sample_fixture_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path,
                               sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Setup project
    setup_project(projectdir, "dummy_value")

    # Get basic sample settings, builder, assets environment and page views
    settings = minimal_basic_settings(projectdir)
    assets_env = register_assets(settings)
    pages_builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)
    # NOTE: We need to force reloading importation else the previous import settings
    #       with different values, is still re-used
    pages_map = importlib.reload(pages_map)

    # Fill registry
    pages_builder.scan_bulk(pages_map.PAGES)

    handler = TemplatesWatchEventHandler(settings, pages_builder,
                                         **settings.WATCHER_TEMPLATES_PATTERNS)

    # Tricks to return the "reset function" which needs "projectdir" path that is only
    # available from "handler_ready_shortcut" but not in the test itself
    def resetter():
        reset_fixture(projectdir)

    return settings, handler, resetter
예제 #11
0
파일: 06_build.py 프로젝트: sveetch/Optimus
def test_build_bulk(minimal_basic_settings, fixtures_settings, temp_builds_dir,
                    sample_fixture_name, attempted_destinations):
    """
    Build all pages in one bulk action

    Since 'build_item' test allready compare builded file, we dont do it again
    here, just check returned paths
    """
    basepath = temp_builds_dir.join('builder_build_bulk_{}'.format(sample_fixture_name))
    projectdir = os.path.join(basepath.strpath, sample_fixture_name)

    attempts_dir = os.path.join(fixtures_settings.fixtures_path, 'builds', sample_fixture_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path, sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Get basic sample settings
    settings = minimal_basic_settings(projectdir)

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)

    # Collect finded templates for each defined page view
    buildeds = builder.build_bulk(pages_map.PAGES)

    # Check every attempted file has been created (promise)
    assert buildeds == [os.path.join(settings.PUBLISH_DIR, path)
                        for path in attempted_destinations]

    # Check promised builded file exists
    for dest in attempted_destinations:
        absdest = os.path.join(settings.PUBLISH_DIR, dest)
        assert os.path.exists(absdest) == True
예제 #12
0
def test_build_item(
    minimal_basic_settings,
    fixtures_settings,
    reset_syspath,
    temp_builds_dir,
    sample_fixture_name,
    attempted_destinations,
):
    """
    Build each page

    This will only works for sample fixtures that use the same as
    'basic_template'.

    Also we build in production mode so webassets apply minification, this is
    required since in development mode webassets use a hash on every asset
    file that we can't rely on and would break builded file comparaison
    """
    basepath = temp_builds_dir.join(
        "builder_build_item_{}".format(sample_fixture_name))
    projectdir = os.path.join(basepath.strpath, sample_fixture_name)

    attempts_dir = os.path.join(fixtures_settings.fixtures_path, "builds",
                                sample_fixture_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path,
                               sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Setup project
    setup_project(projectdir, "dummy_value")

    # Get basic sample settings
    settings = minimal_basic_settings(projectdir)

    # Enabled production mode for webassets without url expire in a custom
    # cache dir, so we have stable asset filename for comparaison
    cache_dir = os.path.join(projectdir, "webassets-cache")
    os.makedirs(cache_dir)
    settings.DEBUG = False
    settings.WEBASSETS_CACHE = cache_dir
    settings.WEBASSETS_URLEXPIRE = False

    # Define a dummy filter to test filter registration and usage
    settings.JINJA_FILTERS = {"dummy_filter": DummyFilter}

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)
    # NOTE: We need to force reloading importation else the previous import settings
    #       with different values, is still re-used
    pages_map = importlib.reload(pages_map)

    # Collect finded templates for each defined page view
    buildeds = []
    for pageview in pages_map.PAGES:
        found = builder.build_item(pageview)
        buildeds.append(found)

    # Add absolute build dir to each attempted relative path
    assert buildeds == [
        os.path.join(settings.PUBLISH_DIR, path)
        for path in attempted_destinations
    ]

    # Check every builded destination exists
    for path in attempted_destinations:
        dest_path = os.path.join(settings.PUBLISH_DIR, path)
        attempt_path = os.path.join(attempts_dir, path)

        # Open builded file
        with io.open(dest_path, "r") as destfp:
            built = destfp.read()

        # Write attempted file from builded file
        # This is only temporary stuff to enable when writing new test or
        # updating existing one
        # with io.open(attempt_path, 'w') as writefp:
        # writefp.write(built)

        # Open attempted file from 'builds'
        with io.open(attempt_path, "r") as attemptfp:
            attempted = attemptfp.read()

        assert built == attempted

    # Cleanup sys.path for next tests
    reset_syspath(projectdir)
예제 #13
0
파일: watch.py 프로젝트: sveetch/Optimus
def watch_command(context, basedir, settings_name):
    """
    Watch for changes in project sources to automatically build project
    ressources
    """
    logger = logging.getLogger("optimus")

    # Set required environment variables to load settings
    if PROJECT_DIR_ENVVAR not in os.environ \
       or not os.environ[PROJECT_DIR_ENVVAR]:
        os.environ[PROJECT_DIR_ENVVAR] = basedir
    if SETTINGS_NAME_ENVVAR not in os.environ or \
       not os.environ[SETTINGS_NAME_ENVVAR]:
        os.environ[SETTINGS_NAME_ENVVAR] = settings_name

    # Load current project settings
    from optimus.conf.registry import settings

    # Debug output
    display_settings(settings, ('DEBUG', 'PROJECT_DIR', 'SOURCES_DIR',
                                'TEMPLATES_DIR', 'LOCALES_DIR'))

    initialize(settings)

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=basedir)

    # Proceed to page building from registered pages
    logger.debug('Trigger pages build to start')
    builder.build_bulk(pages_map.PAGES)

    builder.scan_bulk(pages_map.PAGES)

    observer = Observer()

    # Init templates and assets event watchers
    templates_event_handler = TemplatesWatchEventHandler(
        settings,
        builder,
        **settings.WATCHER_TEMPLATES_PATTERNS
    )

    if assets_env is not None:
        assets_event_handler = AssetsWatchEventHandler(
            settings,
            assets_env,
            builder,
            **settings.WATCHER_ASSETS_PATTERNS
        )

    # Registering event watchers and start to watch
    observer.schedule(
        templates_event_handler,
        settings.TEMPLATES_DIR,
        recursive=True
    )
    if assets_env is not None:
        observer.schedule(
            assets_event_handler,
            settings.SOURCES_DIR,
            recursive=True
        )

    logger.warning('Starting to watch sources, use CTRL+C to stop it')
    observer.start()
    try:
        while True:
            time.sleep(1)
    except KeyboardInterrupt:
        logger.warning('Stopping watcher..')
        observer.stop()
    observer.join()
예제 #14
0
파일: 06_build.py 프로젝트: sveetch/Optimus
def test_build_item(minimal_basic_settings, fixtures_settings, temp_builds_dir,
                    sample_fixture_name, attempted_destinations):
    """
    Build each page

    This will only works for sample fixtures that use the same as
    'basic_template'.

    Also we build in production mode so webassets apply minification, this is
    required since in development mode webassets use a hash on every asset
    file that we can't rely on and would break builded file comparaison
    """
    basepath = temp_builds_dir.join('builder_build_item_{}'.format(sample_fixture_name))
    projectdir = os.path.join(basepath.strpath, sample_fixture_name)

    attempts_dir = os.path.join(fixtures_settings.fixtures_path, 'builds', sample_fixture_name)

    # Copy sample from fixtures dir
    templatedir = os.path.join(fixtures_settings.fixtures_path, sample_fixture_name)
    shutil.copytree(templatedir, projectdir)

    # Get basic sample settings
    settings = minimal_basic_settings(projectdir)

    # Enabled production mode for webassets without url expire in a custom
    # cache dir, so we have stable asset filename for comparaison
    cache_dir = os.path.join(projectdir, 'webassets-cache')
    os.makedirs(cache_dir)
    settings.DEBUG = False
    settings.WEBASSETS_CACHE = cache_dir
    settings.WEBASSETS_URLEXPIRE = False

    # Init webassets and builder
    assets_env = register_assets(settings)
    builder = PageBuilder(settings, assets_env=assets_env)
    pages_map = import_pages_module(settings.PAGES_MAP, basedir=projectdir)

    # Collect finded templates for each defined page view
    buildeds = []
    for pageview in pages_map.PAGES:
        found = builder.build_item(pageview)
        buildeds.append(found)

    # Add absolute build dir to each attempted relative path
    assert buildeds == [os.path.join(settings.PUBLISH_DIR, path)
                        for path in attempted_destinations]

    # Check every builded destination exists
    for path in attempted_destinations:
        dest_path = os.path.join(settings.PUBLISH_DIR, path)
        attempt_path = os.path.join(attempts_dir, path)

        # Open builded file
        with io.open(dest_path, 'r') as destfp:
            built = destfp.read()

        # Write attempted file from builded file
        # This is only temporary stuff to enable when writing new test or
        # updating existing one
        #with io.open(attempt_path, 'w') as writefp:
            #writefp.write(built)

        # Open attempted file from 'builds'
        with io.open(attempt_path, 'r') as attemptfp:
            attempted = attemptfp.read()

        assert built == attempted