Browse Source

version 1.0

amizukisato 9 years ago
parent
commit
815a343870

+ 17 - 17
.classpath

@@ -1,17 +1,17 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-<classpath>
3
-	<classpathentry kind="src" path="src"/>
4
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
-	<classpathentry kind="lib" path="lib/commons-codec-1.9.jar"/>
6
-	<classpathentry kind="lib" path="lib/commons-logging-1.2.jar"/>
7
-	<classpathentry kind="lib" path="lib/fluent-hc-4.5.jar"/>
8
-	<classpathentry kind="lib" path="lib/httpclient-4.5.jar"/>
9
-	<classpathentry kind="lib" path="lib/httpclient-cache-4.5.jar"/>
10
-	<classpathentry kind="lib" path="lib/httpclient-win-4.5.jar"/>
11
-	<classpathentry kind="lib" path="lib/httpcore-4.4.1.jar"/>
12
-	<classpathentry kind="lib" path="lib/httpmime-4.5.jar"/>
13
-	<classpathentry kind="lib" path="lib/jna-4.1.0.jar"/>
14
-	<classpathentry kind="lib" path="lib/jna-platform-4.1.0.jar"/>
15
-	<classpathentry kind="lib" path="C:/Users/Gleisson/workspace/SnailServlet/WebContent/WEB-INF/lib/json-20090211.jar"/>
16
-	<classpathentry kind="output" path="bin"/>
17
-</classpath>
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<classpath>
3
+	<classpathentry kind="src" path="src"/>
4
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
+	<classpathentry kind="lib" path="lib/commons-codec-1.9.jar"/>
6
+	<classpathentry kind="lib" path="lib/commons-logging-1.2.jar"/>
7
+	<classpathentry kind="lib" path="lib/fluent-hc-4.5.jar"/>
8
+	<classpathentry kind="lib" path="lib/httpclient-4.5.jar"/>
9
+	<classpathentry kind="lib" path="lib/httpclient-cache-4.5.jar"/>
10
+	<classpathentry kind="lib" path="lib/httpclient-win-4.5.jar"/>
11
+	<classpathentry kind="lib" path="lib/httpcore-4.4.1.jar"/>
12
+	<classpathentry kind="lib" path="lib/httpmime-4.5.jar"/>
13
+	<classpathentry kind="lib" path="lib/jna-4.1.0.jar"/>
14
+	<classpathentry kind="lib" path="lib/jna-platform-4.1.0.jar"/>
15
+	<classpathentry kind="lib" path="lib/json-20090211.jar"/>
16
+	<classpathentry kind="output" path="bin"/>
17
+</classpath>

+ 2 - 0
.gitignore

@@ -8,6 +8,8 @@
8 8
 *.war
9 9
 *.ear
10 10
 
11
+snailDao.jar
12
+
11 13
 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
12 14
 hs_err_pid*
13 15
 /bin/

+ 9 - 4
src/test/Start.java

@@ -57,17 +57,22 @@ public class Start {
57 57
 
58 58
 	public static void main (String [] args){
59 59
 
60
-
60
+		
61
+		
61 62
 		List<ServletTest> tests = generateList();
62 63
 
63
-
64
-
65
-
66 64
 		for(ServletTest test : tests)
67 65
 		{
68 66
 			test.runTest();
69 67
 		}
70 68
 
69
+		for(ServletTest test : tests)
70
+		{
71
+			System.out.println(test);
72
+		}
73
+
74
+
75
+
71 76
 
72 77
 	}
73 78
 

+ 2 - 1
src/test/servlet/event/get/TestImportDataFacebook.java

@@ -11,7 +11,8 @@ public class TestImportDataFacebook extends ServletTestGet{
11 11
 	
12 12
 		
13 13
 		return "data?method=import_data&"
14
-				+ "token=CAABvo49PZBskBAFbAkwfl0SV9gK0yZARhciNoCrZBxgE6KZB8MNLmAGt6rKXxuyomndCmuJGQhSp5KXwgfZBtLKmu6VvzZBcgeVrNr3eAI2h78UDOBOMFayFt9RdIdj13I670xeiZAZAAbTJ6tvt8sQEPZCtknilnTgqlyOxZB8PSDIQtyrNVVKJKm3RyKudF995UA5og6hHmsaAZDZD&socialnetwork=facebook&quantity=4&user_id=1";
14
+				+ "token=CAACEdEose0cBAPu8AMv62PgGvd63pHVP4xQFH2teRjaZCYSjESdShdAZCLJAsYUOSccDZA6JO9wrDjUbVX1ELrg5IjKZAzmNEPHZBvoLw6sZBZB6Pd81ZBMhD5XLIaLWkE2l6f1ifWr1ZBTS2wreorgpR5heWxonetu6XqhUTNE5UcUAGgYESbELvFqH8r77N2wMKPg2G16rkZAJDcuZBnOCD8C"
15
+				+ "&type=Facebook&quantity=4&user_id=1";
15 16
 	}
16 17
 	
17 18
 	

+ 1 - 0
src/test/servlet/event/post/TestCreateCategory.java

@@ -15,6 +15,7 @@ public class TestCreateCategory extends ServletTestPost {
15 15
 		parameters.put("name", "Radialize");
16 16
 		parameters.put("color", "green");
17 17
 		parameters.put("icon", "logo");
18
+		parameters.put("user_id", "4");
18 19
 		return parameters;
19 20
 		
20 21
 	}

+ 6 - 3
src/test/servlet/event/post/TestCreateItem.java

@@ -12,8 +12,11 @@ public class TestCreateItem  extends ServletTestPost{
12 12
 	public Map<String, String> buildParameters() {
13 13
 		Map <String, String> map = new HashMap<String, String>();
14 14
 		map.put("user_id", "16");
15
-		map.put("category_id", "21");
16
-		map.put("text", "Estava de leve na greve");
15
+		map.put("category_id", "20");
16
+		map.put("content", "Zueira");
17
+		map.put("title", "Doido");
18
+		map.put("start_date", "2011-04-15");
19
+		map.put("end_date", "2014-12-10");
17 20
 		
18 21
 		
19 22
 		
@@ -23,7 +26,7 @@ public class TestCreateItem  extends ServletTestPost{
23 26
 	@Override
24 27
 	public Pair<String, String> buildCheckSum() {
25 28
 		// TODO Auto-generated method stub
26
-		return new Pair<String, String>("categoryId", "21");
29
+		return new Pair<String, String>("categoryId", "20");
27 30
 	}
28 31
 
29 32
 	@Override

+ 1 - 1
src/test/servlet/event/post/TestDeleteCategory.java

@@ -12,7 +12,7 @@ public class TestDeleteCategory extends ServletTestPost{
12 12
 	public Map<String, String> buildParameters() {
13 13
 		
14 14
 		Map<String, String> map = new HashMap<String, String>();
15
-		map.put("category_id", "12");
15
+		map.put("category_id", "26");
16 16
 		
17 17
 		return map;
18 18
 	}

+ 1 - 1
src/test/servlet/event/post/TestDeleteItem.java

@@ -11,7 +11,7 @@ public class TestDeleteItem extends ServletTestPost {
11 11
 	@Override
12 12
 	public Map<String, String> buildParameters() {
13 13
 		Map<String, String> map = new HashMap<String, String>();
14
-		map.put("item_id", "12");
14
+		map.put("item_id", "11");
15 15
 		
16 16
 		return map;
17 17
 	}

+ 2 - 2
src/test/servlet/user/post/TestLogin.java

@@ -14,7 +14,7 @@ public class TestLogin  extends  ServletTestPost{
14 14
 		Map <String , String> parameters = new HashMap<String , String>();
15 15
 		
16 16
 		parameters.put("password", "99719797");
17
-		parameters.put("email", "ailtonjapaitapeva@idealize.com");
17
+		parameters.put("email", "ailtonjapaitapeva@hotmail.com");
18 18
 		
19 19
 		
20 20
 		
@@ -31,7 +31,7 @@ public class TestLogin  extends  ServletTestPost{
31 31
 	@Override
32 32
 	public Pair<String, String> buildCheckSum() {
33 33
 		// TODO Auto-generated method stub
34
-		return new Pair<String, String>("name","Fernanda" );
34
+		return new Pair<String, String>("name","Ailton Mizuki Sato" );
35 35
 	}
36 36
 	
37 37