1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #
- # Copyright 2018-2022 Elyra Authors
- #
- # Licensed 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 json
- import os
- import pytest
- from elyra.tests.contents.test_utils import create_dir
- from elyra.tests.contents.test_utils import create_file
- from elyra.tests.contents.test_utils import empty_notebook_content
- from elyra.tests.contents.test_utils import notebook_content
- from elyra.tests.contents.test_utils import python_content
- from elyra.tests.contents.test_utils import r_content
- from elyra.tests.contents.test_utils import text_content
- @pytest.fixture
- def directory_name():
- return "dir.py"
- @pytest.fixture
- def text_filename():
- return "test.txt"
- @pytest.fixture
- def notebook_filename():
- return "test.ipynb"
- @pytest.fixture
- def python_filename():
- return "test.py"
- @pytest.fixture
- def r_filename():
- return "test.r"
- @pytest.fixture
- def create_directory(jp_root_dir, directory_name):
- create_dir(jp_root_dir, directory_name)
- @pytest.fixture
- def create_text_file(jp_root_dir, text_filename):
- create_file(jp_root_dir, text_filename, text_content)
- @pytest.fixture(params=["", "@subdir"]) # Create in a "difficult" subdir https://github.com/elyra-ai/elyra/issues/2270
- def create_notebook_file(jp_root_dir, notebook_filename, request):
- create_file(jp_root_dir, notebook_filename, json.dumps(notebook_content), subdir=request.param)
- yield os.path.join(request.param, notebook_filename)
- @pytest.fixture(params=["", "@subdir"]) # Create in a "difficult" subdir https://github.com/elyra-ai/elyra/issues/2270
- def create_python_file(jp_root_dir, python_filename, request):
- create_file(jp_root_dir, python_filename, python_content, subdir=request.param)
- yield os.path.join(request.param, python_filename)
- @pytest.fixture(params=["", "@subdir"]) # Create in a "difficult" subdir https://github.com/elyra-ai/elyra/issues/2270
- def create_r_file(jp_root_dir, r_filename, request):
- create_file(jp_root_dir, r_filename, r_content, subdir=request.param)
- yield os.path.join(request.param, r_filename)
- @pytest.fixture(params=["", "@subdir"]) # Create in a "difficult" subdir https://github.com/elyra-ai/elyra/issues/2270
- def create_empty_notebook_file(jp_root_dir, notebook_filename, request):
- create_file(jp_root_dir, notebook_filename, json.dumps(empty_notebook_content), subdir=request.param)
- yield os.path.join(request.param, notebook_filename)
- # Set Elyra server extension as enabled (overriding server_config fixture from jupyter_server)
- @pytest.fixture
- def jp_server_config():
- return {"ServerApp": {"jpserver_extensions": {"elyra": True}}}
|