Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
cc9cda26
Commit
cc9cda26
authored
17 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
LMS-210 Bugs fixed: No channels in format parameters.
SVN: 3571
parent
7d29920a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bds/source/java/ch/systemsx/cisd/bds/hcs/ChannelList.java
+2
-4
2 additions, 4 deletions
bds/source/java/ch/systemsx/cisd/bds/hcs/ChannelList.java
bds/sourceTest/java/ch/systemsx/cisd/bds/hcs/ChannelListTest.java
+0
-122
0 additions, 122 deletions
...ceTest/java/ch/systemsx/cisd/bds/hcs/ChannelListTest.java
with
2 additions
and
126 deletions
bds/source/java/ch/systemsx/cisd/bds/hcs/ChannelList.java
+
2
−
4
View file @
cc9cda26
...
...
@@ -32,6 +32,8 @@ import ch.systemsx.cisd.bds.storage.INode;
*
* @author Christian Ribeaud
*/
// TODO, 2008-01-16, Franz-Josef Elmer: This class should be removed or used differently because channels are
// annotations and no longer format parameters
public
final
class
ChannelList
implements
IStorable
,
Iterable
<
Channel
>
{
...
...
@@ -108,10 +110,6 @@ public final class ChannelList implements IStorable, Iterable<Channel>
public
final
void
saveTo
(
final
IDirectory
directory
)
{
directory
.
addKeyValuePair
(
NUMBER_OF_CHANNELS
,
getChannelCount
()
+
""
);
for
(
Channel
channel
:
channels
)
{
channel
.
saveTo
(
directory
);
}
}
//
...
...
This diff is collapsed.
Click to expand it.
bds/sourceTest/java/ch/systemsx/cisd/bds/hcs/ChannelListTest.java
deleted
100644 → 0
+
0
−
122
View file @
7d29920a
/*
* Copyright 2007 ETH Zuerich, CISD
*
* 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.
*/
package
ch.systemsx.cisd.bds.hcs
;
import
java.io.File
;
import
java.util.ArrayList
;
import
java.util.Iterator
;
import
java.util.List
;
import
org.testng.annotations.Test
;
import
static
org
.
testng
.
AssertJUnit
.*;
import
ch.systemsx.cisd.bds.exception.DataStructureException
;
import
ch.systemsx.cisd.bds.storage.IDirectory
;
import
ch.systemsx.cisd.bds.storage.filesystem.NodeFactory
;
import
ch.systemsx.cisd.common.utilities.AbstractFileSystemTestCase
;
/**
* Test cases for corresponding {@link ChannelList} class.
*
* @author Christian Ribeaud
*/
public
final
class
ChannelListTest
extends
AbstractFileSystemTestCase
{
private
final
static
ChannelList
createChannelList
()
{
final
List
<
Channel
>
list
=
new
ArrayList
<
Channel
>();
list
.
add
(
new
Channel
(
1
,
123
));
list
.
add
(
new
Channel
(
2
,
456
));
return
new
ChannelList
(
list
);
}
private
final
static
void
checkFile
(
final
File
file
)
{
assertTrue
(
file
.
getName
().
equals
(
ChannelList
.
NUMBER_OF_CHANNELS
)
||
file
.
getName
().
startsWith
(
Channel
.
CHANNEL
));
}
private
final
static
void
checkChannelFile
(
final
File
channelFile
)
{
assertNotNull
(
channelFile
);
assertTrue
(
channelFile
.
isDirectory
());
final
File
[]
files
=
channelFile
.
listFiles
();
assertEquals
(
1
,
files
.
length
);
assertEquals
(
files
[
0
].
getName
(),
Channel
.
WAVELENGTH
);
}
@Test
public
final
void
testConstructor
()
{
try
{
new
ChannelList
(
null
);
fail
(
"Channel list can not be null."
);
}
catch
(
AssertionError
ex
)
{
}
try
{
new
ChannelList
(
new
ArrayList
<
Channel
>());
fail
(
"Channel list can not be empty."
);
}
catch
(
AssertionError
ex
)
{
}
final
List
<
Channel
>
list
=
new
ArrayList
<
Channel
>();
list
.
add
(
new
Channel
(
1
,
123
));
list
.
add
(
new
Channel
(
1
,
456
));
try
{
new
ChannelList
(
list
);
fail
(
"Duplicate channels are not allowed."
);
}
catch
(
DataStructureException
e
)
{
}
}
@Test
public
final
void
testSaveTo
()
{
final
ChannelList
channelList
=
createChannelList
();
final
IDirectory
dir
=
NodeFactory
.
createDirectoryNode
(
workingDirectory
);
channelList
.
saveTo
(
dir
);
final
File
[]
files
=
workingDirectory
.
listFiles
();
assertEquals
(
3
,
files
.
length
);
for
(
File
file
:
files
)
{
checkFile
(
file
);
if
(
file
.
getName
().
startsWith
(
Channel
.
CHANNEL
))
{
checkChannelFile
(
file
);
}
}
}
@Test
(
dependsOnMethods
=
"testSaveTo"
)
public
final
void
testLoadFrom
()
{
testSaveTo
();
final
IDirectory
dir
=
NodeFactory
.
createDirectoryNode
(
workingDirectory
);
final
ChannelList
channelList
=
ChannelList
.
loadFrom
(
dir
);
assertEquals
(
2
,
channelList
.
getChannelCount
());
final
Iterator
<
Channel
>
iterator
=
channelList
.
iterator
();
Channel
channel
=
iterator
.
next
();
assertEquals
(
123
,
channel
.
getWavelength
());
channel
=
iterator
.
next
();
assertEquals
(
456
,
channel
.
getWavelength
());
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment