/library/socket/constants/constants_spec.rb

https://github.com/gilmation/rubyspec · Ruby · 64 lines · 55 code · 9 blank · 0 comment · 0 complexity · 77e13dae64a65bb4d37faa938fe98140 MD5 · raw file

  1. require File.expand_path('../../../../spec_helper', __FILE__)
  2. require File.expand_path('../../fixtures/classes', __FILE__)
  3. include Socket::Constants
  4. describe "Socket::Constants" do
  5. it "defines socket types" do
  6. consts = ["SOCK_DGRAM", "SOCK_RAW", "SOCK_RDM", "SOCK_SEQPACKET", "SOCK_STREAM"]
  7. consts.each do |c|
  8. Socket::Constants.should have_constant(c)
  9. end
  10. end
  11. it "defines protocol families" do
  12. consts = ["PF_INET6", "PF_INET", "PF_IPX", "PF_UNIX", "PF_UNSPEC"]
  13. consts.each do |c|
  14. Socket::Constants.should have_constant(c)
  15. end
  16. end
  17. it "defines address families" do
  18. consts = ["AF_INET6", "AF_INET", "AF_IPX", "AF_UNIX", "AF_UNSPEC"]
  19. consts.each do |c|
  20. Socket::Constants.should have_constant(c)
  21. end
  22. end
  23. it "defines send/receive options" do
  24. consts = ["MSG_DONTROUTE", "MSG_OOB", "MSG_PEEK"]
  25. consts.each do |c|
  26. Socket::Constants.should have_constant(c)
  27. end
  28. end
  29. it "defines socket level options" do
  30. consts = ["SOL_SOCKET"]
  31. consts.each do |c|
  32. Socket::Constants.should have_constant(c)
  33. end
  34. end
  35. it "defines socket options" do
  36. consts = ["SO_BROADCAST", "SO_DEBUG", "SO_DONTROUTE", "SO_ERROR", "SO_KEEPALIVE", "SO_LINGER",
  37. "SO_OOBINLINE", "SO_RCVBUF", "SO_REUSEADDR", "SO_SNDBUF", "SO_TYPE"]
  38. consts.each do |c|
  39. Socket::Constants.should have_constant(c)
  40. end
  41. end
  42. it "defines multicast options" do
  43. consts = ["IP_ADD_MEMBERSHIP", "IP_DEFAULT_MULTICAST_LOOP", "IP_DEFAULT_MULTICAST_TTL",
  44. "IP_MAX_MEMBERSHIPS", "IP_MULTICAST_LOOP", "IP_MULTICAST_TTL"]
  45. consts.each do |c|
  46. Socket::Constants.should have_constant(c)
  47. end
  48. end
  49. it "defines TCP options" do
  50. consts = ["TCP_MAXSEG", "TCP_NODELAY"]
  51. consts.each do |c|
  52. Socket::Constants.should have_constant(c)
  53. end
  54. end
  55. end