Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java')
-rw-r--r--org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java
new file mode 100644
index 000000000..5226c6e24
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/ui/editor/AttachmentTableLabelProviderTest.java
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Tasktop Technologies and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.tasks.tests.ui.editor;
+
+import junit.framework.TestCase;
+
+import org.eclipse.mylyn.internal.tasks.core.TaskAttachment;
+import org.eclipse.mylyn.internal.tasks.ui.editors.AttachmentTableLabelProvider;
+import org.eclipse.mylyn.tasks.tests.TaskTestUtil;
+
+/**
+ * @author Thomas Ehrnhoefer
+ * @author Steffen Pingel
+ */
+public class AttachmentTableLabelProviderTest extends TestCase {
+
+ public void testGetAttachmentId() {
+ TaskAttachment attachment = TaskTestUtil.createMockTaskAttachment("1");
+ AttachmentTableLabelProvider labelProvider = new AttachmentTableLabelProvider(null, null);
+
+ attachment.setUrl(null);
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("");
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("http://testi.ng");
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("http://testi.ng/?some=parameter");
+ assertEquals("", labelProvider.getColumnText(attachment, 5));
+
+ attachment.setUrl("http://testi.ng/?id=myid");
+ assertEquals("myid", labelProvider.getColumnText(attachment, 5));
+ }
+
+}

Back to the top