/[projects]/android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/TestServlet.java
ViewVC logotype

Diff of /android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/TestServlet.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

android/TrainInfoService/src/dk/thoerup/traininfoservice/TestServlet.java revision 738 by torben, Wed May 19 07:57:14 2010 UTC android/TrainInfoServiceGoogle/src/dk/thoerup/traininfoservice/TestServlet.java revision 1080 by torben, Mon Sep 20 20:11:55 2010 UTC
# Line 12  import javax.servlet.http.HttpServletRes Line 12  import javax.servlet.http.HttpServletRes
12    
13  public class TestServlet extends HttpServlet {  public class TestServlet extends HttpServlet {
14          private static final long serialVersionUID = 1L;          private static final long serialVersionUID = 1L;
15            
16            Random r = new Random();
17    
18          //South-West corner= 54.0, 7.0          //South-West corner= 54.5, 8.0
19          //North-East corner= 58.0, 13.0          //North-East corner= 57.8, 12.7
20          //Latitude span=4.0          //Latitude span=3.3
21          //Longitude span=6.0          //Longitude span=4.7
22          void testFindNearest(int count) throws SQLException {          void testFindNearest(int count) throws SQLException {          
                 Random r = new Random();  
23    
24                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
25    
26    
27                  for (int i=0; i<count; i++) {                  for (int i=0; i<count; i++) {
28                          float lat = (r.nextFloat()*4.0F) + 54.0F;                          float lat = (r.nextFloat()*3.3F) + 54.5F;
29                          float lng = (r.nextFloat()*6.0F) + 7.0F;                          float lng = (r.nextFloat()*4.7F) + 8.0F;
30                          db.getByLocation(lat, lng);                          db.getByLocation(lat, lng);
31                  }                  }
32    
# Line 34  public class TestServlet extends HttpSer Line 35  public class TestServlet extends HttpSer
35          }          }
36    
37          void testFindName(int count)  throws SQLException {          void testFindName(int count)  throws SQLException {
                 Random r = new Random();  
38                                    
39                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
40                                    
# Line 49  public class TestServlet extends HttpSer Line 49  public class TestServlet extends HttpSer
49                                                    
50                          db.getByName(search);                          db.getByName(search);
51                  }                  }
52            }
53            
54            void testFindFavorites(int count)  throws SQLException {
55                    
56                    StationDAO db = new StationDAO();
57                    
58                    for (int i=0; i<count; i++) {
59                            final int MAX = 8;
60                            
61                            StringBuilder sb = new StringBuilder();
62                            sb.append('(');
63                            for (int j=0; j<MAX;j++) {
64                                    if (j>0)
65                                            sb.append(',');
66                                    sb.append(r.nextInt(400));
67                            }
68                            sb.append(')');
69    
70    
71                            db.getByList(sb.toString());
72                    }
73          }          }
74    
75          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {          protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
76                                    
77                    if (true) {
78                            
79                            return;
80                    }
81                                    
82                  String test = request.getParameter("test");                  String test = request.getParameter("test");
83                  String strCount = request.getParameter("count");                  String strCount = request.getParameter("count");
# Line 69  public class TestServlet extends HttpSer Line 91  public class TestServlet extends HttpSer
91                                  testFindName(count);                                  testFindName(count);
92                          } else if ( test.equals("nearest") ) {                          } else if ( test.equals("nearest") ) {
93                                  testFindNearest(count);                                  testFindNearest(count);
94                            } else if ( test.equals("favorites") ) {
95                                    testFindFavorites(count);
96                          } else {                          } else {
97                                  throw new ServletException("No parameter test");                                  throw new ServletException("No parameter test");
98                          }                          }

Legend:
Removed from v.738  
changed lines
  Added in v.1080

  ViewVC Help
Powered by ViewVC 1.1.20