Fix. Default password should be [] not an empty string
line source
% A test script to figure out how to do the submission test
mc
b = ao(1:10);
%% Case 1
submit(b)
%% Case 2
pl = plist('experiment title', 'a nice experiment')
submit(b,pl)
%% Case 3
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'experiment title', 'a nice experiment')
submit(b,pl)
%% Case 4
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', 'keywords', 'a,b,c')
submit(b,pl)
%% Case 5
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', 'password', 'asd', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', ...
'keywords', 'a,b,c', ...
'quantity', 'none', ...
'reference ids', '1,2,3', ...
'additional comments', 'none', ...
'additional authors', 'none')
submit(b,pl)
%% Case 6
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', 'keywords', 'a,b,c', 'no dialog', true)
submit(b,pl)
%% Case 7
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', 'password', 'asd', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', 'keywords', 'a,b,c', 'no dialog', true)
submit(b,pl)
%% Case 8
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', 'password', 'asd', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', 'keywords', 'a,b,c', 'no dialog', false)
submit(b,pl)
%% Case 9
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', 'password', 'asd', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', 'keywords', 'a,b,c')
submit(b,pl)
%% Case 10
pl = plist('hostname', 'localhost', 'database', 'ltpda_test', 'username', 'hewitson', 'password', 'asd', ...
'experiment title', 'a nice experiment', ...
'experiment description', 'describe this thing', ...
'analysis description', 'no analysis', 'keywords', 'a,b,c', 'no dialog', true)
bsubmit(b,pl)