first import, still need to create a struts-plugin.xml file that maps the beans. 

git-svn-id: https://svn.apache.org/repos/asf/struts/sandbox/trunk@781581 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/struts2/fileupload/UploadStatusHolderTest.java b/src/test/java/org/apache/struts2/fileupload/UploadStatusHolderTest.java
new file mode 100644
index 0000000..1e2a04f
--- /dev/null
+++ b/src/test/java/org/apache/struts2/fileupload/UploadStatusHolderTest.java
@@ -0,0 +1,70 @@
+/*
+ * $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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 org.apache.struts2.fileupload;
+
+import org.junit.Test;
+import static org.junit.Assert.assertTrue;
+
+/**
+ * Unit Test for UploadStatusHolder
+ *
+ * @author Wes W
+ */
+public class UploadStatusHolderTest {
+
+    /**
+     *
+     */
+    @Test
+    public void testStatusHolding() {
+        UploadStatusHolder holder1 = new UploadStatusHolder();
+        UploadStatus status1 = new UploadStatus();
+        status1.setBytesRead(1L);
+        status1.setContentLength(1L);
+        status1.setItem(1L);
+        holder1.addUploadStatus("status1",status1);
+
+        UploadStatusHolder holder2 = new UploadStatusHolder();
+        UploadStatus status2 = holder2.getUploadStatus("status1");
+
+        assertTrue(status1.getBytesRead() == status2.getBytesRead());
+        assertTrue(status1.getContentLength() == status2.getContentLength());
+        assertTrue(status1.getItem() == status2.getItem());
+    }
+
+    /**
+     *
+     * @throws Exception
+     */
+    @Test
+    public void testStatusHoldingGetsRemoved() throws Exception {
+        UploadStatusHolder holder1 = new UploadStatusHolder();
+        holder1.setSecondsToKeep("1");
+        UploadStatus status1 = new UploadStatus();
+        status1.setBytesRead(1L);
+        status1.setContentLength(1L);
+        status1.setItem(1L);
+        holder1.addUploadStatus("status1",status1);
+        Thread.sleep(5000L);
+        UploadStatus status2 = holder1.getUploadStatus("status1");
+        assertTrue(status2 == null);
+    }
+}