Does the execution of addpath/rmpath/savepath in one workspace affect other workspaces?

2 visualizzazioni (ultimi 30 giorni)
Does the execution of addpath/rmpath/savepath in one workspace affect other workspaces?
Suppose that I have two instances of MATLAB running on a single laptop. In one of them I may do one of the following.
  1. addpath(PATH_FOO) or rmpath(PATH_BAR)
  2. addpath(PATH_FOO) or rmpath(PATH_BAR), and then savepath
  3. edit pathdef.m (sure, it is not recommended to edit this file manually, but let us be brutal ...), adding PATH_FOO or removing PATH_BAR, and then save pathdef.m
Questions:
  1. Does anyone of these actions affect the other workspace, sooner or later?
  2. More generally, what kind of commands that we execute in one workspace can affect the other workspace?
  3. What if I am running only one instance of MATLAB, but invoke a parfor loop with two loops running in parallel? Does the execution of addpath/rmpath/savepath in one loop affect the other loop, sooner or later? In general, what kind of commands executed in one parallel loop can affect the other loop?
Motivation: imagine that you are developing some package, and you would like to test multiple versions of this package in multipe instances of MATLAB. Each test may do something like addpath, rmpath, savepath, etc. Below is a piece of pseudo code for such a senario.
% MATLAB instance 1
test(package_directory_of_version1);
% MATLAB instance 2
test(package_directory_of_version2);
function test(package_directory)
setup_package(package_dirctory);
test_package;
% The next line uninstalls the package: remove the paths added by
% `setup_package` and delete the compiled MEX files etc.
uninstall_package(package_directory);
end
function test_package
TEST_THE_MEX_FUNCTIONS_PROVIDED_BY_THE_PACKAGE;
% The functions provided by the package are visible here, thanks
% to the `addpath` and `savepath` in `setup_package`.
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This is the source code of the package that you are developing.
% It should be called as a blackbox in the tests.
function setup_package(package_dirctory)
mex(FORTRAN_SOURCE_CODE_IN_PACKAGE_DIRECTORY);
addpath(PATH_TO_THE_MEX_FUNCTIONS_PROVIDED_BY_THE_PACKAGE);
savepath; % Make the package available in subsequent MATLAB sessions
end
You want to make sure, of course, the tests do not affect each other. Assume that the tests do not share any data or source code.
Thank you very much for any comments and insights. It would be much appreciated if you could direct me to relevant sections in the official documentation of MATLAB --- I did some searching in the documention, but have not found an answer to my question.
BTW, in case you believe that the test described in the pseudo code is conducted in a wrong/bad manner, I will be very grateful if you could recommend a better way of doing it.

Risposte (1)

Steven Lord
Steven Lord il 3 Mar 2022
IMO the only test that probably should be calling savepath is the test for the savepath function itself. You shouldn't be writing that test: MathWorks has tested that function.
If you need to manipulate the MATLAB path in a test file and you're writing class-based tests I recommend you create and apply a fixture, specifically a matlab.unittest.fixtures.PathFixture. It will handle adding the folder to the MATLAB search path when it is applied and restoring the search path to its previous state when the PathFixture is torn down at the end of the test, regardless of whether the test passes, fails, or errors during execution.
  1 Commento
Zaikun Zhang
Zaikun Zhang il 3 Mar 2022
Thank you very much @Steven Lord for the very prompt response.
> IMO the only test that probably should be calling savepath is the test for the savepath function itself. You shouldn't be writing that test: MathWorks has tested that function.
Totally agree. I have no intention to test savepath. Maybe my question did not make the testing scenario clear enough. I have edited my question to include some pseudo code. I hope it is clearer now.
> If you need to manipulate the MATLAB path in a test file and you're writing class-based tests I recommend you create and apply a fixture
Thank you very much for directing to fixture, which I am investigating now. Meanwhile, do you think the testing scenario described in my question fits into the testing framework related to fixture?
Thank you very much!

Accedi per commentare.

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by