6.11 Testing the Delivery Processor

With the Python script written and either (or both) FedEx and UPS customer accounts and web developer API keys registered, we can now proceed with running the sketch and listener script through a functional test. Load a valid, recent FedEx or UPS tracking number into the trackingstatus table in the packagedelivery database. To do this, you can use the same SQLite Manager plug-in for Firefox that was used to create the database tables. Simply select SQLite Manager from Firefox’s Tools menu, then open the packagedelivery.sqlite file. Click the trackingstatus table listed in the left column area, followed by the Browse & Search tab. Lastly, click the Edit button to add/modify the tracking number record(s).

Conversely, if you prefer the faster (though less visually stimulating) sqlite3 command-line interface, add your own tracking number(s) via the following SQL statement (remembering, of course, to replace the YOURTRACKINGNUM placeholder with a valid FedEx or UPS tracking number):

  ​sqlite> INSERT INTO tracking("tracking_number","description","delivery_status")\
  VALUES ("YOURTRACKINGNUM", "My Package Being Tracked","0");

Quickly check that the record was indeed correctly added to the tracking table with a simple select statement:

  ​sqlite> select * from tracking;
  ​1|YOURTRACKINGNUM|My Package Being Tracked|0|​

Add any other valid FedEx or UPS tracking numbers as well to test the iterative lookup functionality that was coded into the Python script. For the purposes of this test, tracking numbers don’t have to only be those for packages in transit. In fact, it’s best to have a mix of both in-transit and delivered packages to verify that the script correctly updated only those packages with tracking numbers that have a confirmed delivery status.

The moment of truth has arrived. Power up the Arduino/XBee package delivery hardware. Make sure the receiving XBee is plugged into your computer via the FTDI cable and execute the python packagedelivery.py command. Press firmly on the force sensitive resistor and wait for the script to process the tracking number queries. If everything worked successfully, you should have received an email from the Gmail account you used for the SMTP gateway that listed all confirmed package deliveries. You can also execute another select * from tracking; query from the sqlite3 command line to verify that the boolean delivered field has been changed from 0 (false) to 1 (true), and that the appropriate time stamp (indicating when the package was actually delivered) was recorded in the deliver_time field.

If the script failed or if the values were not properly stored, reset the records in the tracking table and use a variety of debugging approaches with the script (the easiest being the venerable print() function) to determine where problems are arising in the script’s execution.

Once the tests have successfully and repeatedly passed, we’re ready to install the hardware configuration outdoors in a convenient location close to a power outlet.

Programming Your Home
cover.xhtml
f_0000.html
f_0001.html
f_0002.html
f_0003.html
f_0004.html
f_0005.html
f_0006.html
f_0007.html
f_0008.html
f_0009.html
f_0010.html
f_0011.html
f_0012.html
f_0013.html
f_0014.html
f_0015.html
f_0016.html
f_0017.html
f_0018.html
f_0019.html
f_0020.html
f_0021.html
f_0022.html
f_0023.html
f_0024.html
f_0025.html
f_0026.html
f_0027.html
f_0028.html
f_0029.html
f_0030.html
f_0031.html
f_0032.html
f_0033.html
f_0034.html
f_0035.html
f_0036.html
f_0037.html
f_0038.html
f_0039.html
f_0040.html
f_0041.html
f_0042.html
f_0043.html
f_0044.html
f_0045.html
f_0046.html
f_0047.html
f_0048.html
f_0049.html
f_0050.html
f_0051.html
f_0052.html
f_0053.html
f_0054.html
f_0055.html
f_0056.html
f_0057.html
f_0058.html
f_0059.html
f_0060.html
f_0061.html
f_0062.html
f_0063.html
f_0064.html
f_0065.html
f_0066.html
f_0067.html
f_0068.html
f_0069.html
f_0070.html
f_0071.html
f_0072.html
f_0073.html
f_0074.html
f_0075.html
f_0076.html
f_0077.html
f_0078.html
f_0079.html
f_0080.html
f_0081.html
f_0082.html
f_0083.html
f_0084.html
f_0085.html
f_0086.html
f_0087.html
f_0088.html
f_0089.html
f_0090.html
f_0091.html
f_0092.html
f_0093.html
f_0094.html
f_0095.html
f_0096.html
f_0097.html
f_0098.html
f_0099.html
f_0100.html
f_0101.html
f_0102.html
f_0103.html
f_0104.html
f_0105.html
f_0106.html
f_0107.html
f_0108.html
f_0109.html
f_0110.html
f_0111.html
f_0112.html
f_0113.html
f_0114.html
f_0115.html
f_0116.html
f_0117.html
f_0118.html
f_0119.html
f_0120.html
f_0121.html
f_0122.html
f_0123.html
f_0124.html
f_0125.html