shill: track the CurrentBSS property reported by wpa_supplicant,
and use it to update WiFiService state.

BUG=chromium-os:22850
TEST=new unit tests, autotests (details below)

Ran the WiFiRoaming suite, and noted the following changes:
- 000ChannelHopBSS regressed. This is due to the fact that we
  now call RemoveNetwork when supplicant gives up on connecting
  to a network. With this in place, we need other mechansism
  to retry the connection. (They will come in later commits.)
- 006BeaconLoss now passes.
- 008Prefer5GHz regressed. This failed because we don't group
  Endpoints into Services. I suspect the previous pass was a
  fluke.
- 009ConnectOnResume passes, even though it should fail until
  we provide retry mechanisms. Logs indicate that supplicant's
  AP scan didn't time out as soon as it should have.

Bonus changes:
- Updated some TESTING and HACKING info.
- Added some comments TODOs about timing out connection
  attempts. These aren't strictly part of CurrentBSS
  tracking, but they fit along the theme of getting our
  wpa_supplicant interactions sorted out.

Change-Id: Iba3495cae89ca835523dbf4d9ebfab5da4a8cc2d
Reviewed-on: https://gerrit.chromium.org/gerrit/11822
Tested-by: mukesh agrawal <quiche@chromium.org>
Reviewed-by: Paul Stewart <pstew@chromium.org>
Commit-Ready: mukesh agrawal <quiche@chromium.org>
diff --git a/supplicant_interface_proxy.h b/supplicant_interface_proxy.h
index d451693..82d3a1c 100644
--- a/supplicant_interface_proxy.h
+++ b/supplicant_interface_proxy.h
@@ -31,6 +31,7 @@
       const std::map<std::string, ::DBus::Variant> &args);
   virtual void FlushBSS(const uint32_t &age);
   virtual void RemoveAllNetworks();
+  virtual void RemoveNetwork(const ::DBus::Path &network);
   virtual void Scan(
       const std::map<std::string, ::DBus::Variant> &args);
   virtual void SelectNetwork(const ::DBus::Path &network);