示例#1
0
 def test_check_macos_docker_memory_darwin_filenotfound(self) -> None:
     with patch("tutor.utils.open", mock_open()) as mock_open_settings:
         mock_open_settings.return_value.__enter__.side_effect = FileNotFoundError
         with self.assertRaises(exceptions.TutorError) as e:
             utils.check_macos_docker_memory()
         self.assertIn("Error accessing Docker settings file",
                       e.exception.args[0])
示例#2
0
 def test_check_macos_docker_memory_darwin_insufficient_memory(
         self) -> None:
     with patch("tutor.utils.open",
                mock_open(read_data='{"memoryMiB": 4095}')):
         with self.assertRaises(exceptions.TutorError) as e:
             utils.check_macos_docker_memory()
         self.assertEqual(
             "Docker is configured to allocate 4095 MiB RAM, less than the recommended 4096 MiB",
             e.exception.args[0],
         )
示例#3
0
def quickstart(context: click.Context, non_interactive: bool, pullimages: bool) -> None:
    try:
        utils.check_macos_docker_memory()
    except exceptions.TutorError as e:
        fmt.echo_alert(
            f"""Could not verify sufficient RAM allocation in Docker:
    {e}
Tutor may not work if Docker is configured with < 4 GB RAM. Please follow instructions from:
    https://docs.tutor.overhang.io/install.html"""
        )

    click.echo(fmt.title("Interactive platform configuration"))
    config = tutor_config.load_minimal(context.obj.root)
    if not non_interactive:
        interactive_config.ask_questions(config, run_for_prod=False)
    tutor_config.save_config_file(context.obj.root, config)
    config = tutor_config.load_full(context.obj.root)
    tutor_env.save(context.obj.root, config)

    click.echo(fmt.title("Stopping any existing platform"))
    context.invoke(compose.stop)

    if pullimages:
        click.echo(fmt.title("Docker image updates"))
        context.invoke(compose.dc_command, command="pull")

    click.echo(fmt.title("Building Docker image for LMS and CMS development"))
    context.invoke(compose.dc_command, command="build", args=["lms"])

    click.echo(fmt.title("Starting the platform in detached mode"))
    context.invoke(compose.start, detach=True)

    click.echo(fmt.title("Database creation and migrations"))
    context.invoke(compose.init)

    fmt.echo_info(
        """The Open edX platform is now running in detached mode
Your Open edX platform is ready and can be accessed at the following urls:
    {http}://{lms_host}:8000
    {http}://{cms_host}:8001
    """.format(
            http="https" if config["ENABLE_HTTPS"] else "http",
            lms_host=config["LMS_HOST"],
            cms_host=config["CMS_HOST"],
        )
    )
示例#4
0
文件: local.py 项目: eduNEXT/tutor
def quickstart(
    context: click.Context,
    mounts: t.Tuple[t.List[compose.MountParam.MountType]],
    non_interactive: bool,
    pullimages: bool,
) -> None:
    try:
        utils.check_macos_docker_memory()
    except exceptions.TutorError as e:
        fmt.echo_alert(
            f"""Could not verify sufficient RAM allocation in Docker:

    {e}

Tutor may not work if Docker is configured with < 4 GB RAM. Please follow instructions from:

    https://docs.tutor.overhang.io/install.html""")

    run_upgrade_from_release = tutor_env.should_upgrade_from_release(
        context.obj.root)
    if run_upgrade_from_release is not None:
        click.echo(fmt.title("Upgrading from an older release"))
        if not non_interactive:
            to_release = tutor_env.get_package_release()
            question = f"""You are about to upgrade your Open edX platform from {run_upgrade_from_release.capitalize()} to {to_release.capitalize()}

It is strongly recommended to make a backup before upgrading. To do so, run:

    tutor local stop
    sudo rsync -avr "$(tutor config printroot)"/ /tmp/tutor-backup/

In case of problem, to restore your backup you will then have to run: sudo rsync -avr /tmp/tutor-backup/ "$(tutor config printroot)"/

Are you sure you want to continue?"""
            click.confirm(fmt.question(question),
                          default=True,
                          abort=True,
                          prompt_suffix=" ")
        context.invoke(
            upgrade,
            from_release=run_upgrade_from_release,
        )

    click.echo(fmt.title("Interactive platform configuration"))
    config = tutor_config.load_minimal(context.obj.root)
    if not non_interactive:
        interactive_config.ask_questions(config)
    tutor_config.save_config_file(context.obj.root, config)
    config = tutor_config.load_full(context.obj.root)
    tutor_env.save(context.obj.root, config)

    if run_upgrade_from_release and not non_interactive:
        question = f"""Your platform is being upgraded from {run_upgrade_from_release.capitalize()}.

If you run custom Docker images, you must rebuild them now by running the following command in a different shell:

    tutor images build all # list your custom images here

See the documentation for more information:

    https://docs.tutor.overhang.io/install.html#upgrading-to-a-new-open-edx-release

Press enter when you are ready to continue"""
        click.confirm(fmt.question(question),
                      default=True,
                      abort=True,
                      prompt_suffix=" ")

    click.echo(fmt.title("Stopping any existing platform"))
    context.invoke(compose.stop)
    if pullimages:
        click.echo(fmt.title("Docker image updates"))
        context.invoke(compose.dc_command, command="pull")
    click.echo(fmt.title("Starting the platform in detached mode"))
    context.invoke(compose.start, mounts=mounts, detach=True)
    click.echo(fmt.title("Database creation and migrations"))
    context.invoke(compose.init, mounts=mounts)

    config = tutor_config.load(context.obj.root)
    fmt.echo_info("""The Open edX platform is now running in detached mode
Your Open edX platform is ready and can be accessed at the following urls:

    {http}://{lms_host}
    {http}://{cms_host}
    """.format(
        http="https" if config["ENABLE_HTTPS"] else "http",
        lms_host=config["LMS_HOST"],
        cms_host=config["CMS_HOST"],
    ))
示例#5
0
 def test_check_macos_docker_memory_darwin_encoding_error(self) -> None:
     with patch("tutor.utils.open", mock_open()) as mock_open_settings:
         mock_open_settings.return_value.__enter__.side_effect = TypeError
         with self.assertRaises(exceptions.TutorError) as e:
             utils.check_macos_docker_memory()
         self.assertIn("Text encoding error", e.exception.args[0])
示例#6
0
 def test_check_macos_docker_memory_darwin_type_error(self) -> None:
     with patch("tutor.utils.open",
                mock_open(read_data='{"memoryMiB": "invalidstring"}')):
         with self.assertRaises(exceptions.TutorError) as e:
             utils.check_macos_docker_memory()
         self.assertIn("Unexpected JSON data", e.exception.args[0])
示例#7
0
 def test_check_macos_docker_memory_darwin_key_error(self) -> None:
     with patch("tutor.utils.open", mock_open(read_data="{}")):
         with self.assertRaises(exceptions.TutorError) as e:
             utils.check_macos_docker_memory()
         self.assertIn("key 'memoryMiB' not found", e.exception.args[0])
示例#8
0
 def test_check_macos_docker_memory_darwin_json_decode_error(self) -> None:
     with patch("tutor.utils.open", mock_open(read_data="invalid")):
         with self.assertRaises(exceptions.TutorError) as e:
             utils.check_macos_docker_memory()
         self.assertIn("invalid JSON", e.exception.args[0])
示例#9
0
 def test_check_macos_docker_memory_darwin(self) -> None:
     with patch("tutor.utils.open",
                mock_open(read_data='{"memoryMiB": 4096}')):
         utils.check_macos_docker_memory()
示例#10
0
 def test_check_macos_docker_memory_win32_should_skip(self) -> None:
     utils.check_macos_docker_memory()