API Docs for: 0.0.6
Show:

File: lib/commands/cookie.js

  1. /*!
  2. *
  3. * Copyright (c) 2013 Sebastian Golasch
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included
  13. * in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. *
  23. */
  24.  
  25. 'use strict';
  26.  
  27. // ext. libs
  28. var Q = require('q');
  29.  
  30. /**
  31. * Cookie related methods
  32. *
  33. * @module Driver
  34. * @class Cookie
  35. * @namespace Dalek.DriverNative.Commands
  36. */
  37.  
  38. var Cookie = {
  39.  
  40. /**
  41. * Sets an cookie
  42. *
  43. * @method setCookie
  44. * @param {string} name Name of the cookie
  45. * @param {string} contents Contents of the cookie
  46. * @param {string} hash Unique hash of that fn call
  47. * @chainable
  48. */
  49.  
  50. setCookie: function (name, contents, hash) {
  51. this.actionQueue.push(this.webdriverClient.setCookie.bind(this.webdriverClient, {name: name, value: contents}));
  52. this.actionQueue.push(this._setCookieCb.bind(this, name, contents, hash));
  53. return this;
  54. },
  55.  
  56. /**
  57. * Sends out an event with the results of the `setCookie` call
  58. *
  59. * @method _setCookieCb
  60. * @param {string} name Name of the cookie
  61. * @param {string} contents Contents of the cookie
  62. * @param {string} hash Unique hash of that fn call
  63. * @return {object} promise Exists promise
  64. * @private
  65. */
  66.  
  67. _setCookieCb: function (name, contents, hash) {
  68. var deferred = Q.defer();
  69. this.events.emit('driver:message', {key: 'setCookie', value: name, contents: contents, uuid: hash, hash: hash});
  70. deferred.resolve();
  71. return deferred.promise;
  72. },
  73.  
  74. /**
  75. * Retrieves an cookie
  76. *
  77. * @method cookie
  78. * @param {string} name Name of the cookie
  79. * @param {string} cookie Expected contents of the cookie
  80. * @param {string} hash Unique hash of that fn call
  81. * @chainable
  82. */
  83.  
  84. cookie: function (name, cookie, hash) {
  85. this.actionQueue.push(this.webdriverClient.getCookie.bind(this.webdriverClient, name));
  86. this.actionQueue.push(this._cookieCb.bind(this, name, hash));
  87. return this;
  88. },
  89.  
  90. /**
  91. * Sends out an event with the results of the `setCookie` call
  92. *
  93. * @method _cookieCb
  94. * @param {string} name Name of the cookie
  95. * @param {string} expected Expected contents of the cookie
  96. * @param {string} hash Unique hash of that fn call
  97. * @param {string} result Serialized JSON with the reuslts of the exists call
  98. * @return {object} promise Exists promise
  99. * @private
  100. */
  101.  
  102. _cookieCb: function (name, expected, hash, res) {
  103. var deferred = Q.defer();
  104. var cookies = JSON.parse(res).value;
  105. var cookie = false;
  106. cookies.forEach(function (cookieItem) {
  107. if (cookieItem.name === name) {
  108. cookie = cookieItem.value;
  109. }
  110. });
  111.  
  112. this.events.emit('driver:message', {key: 'cookie', value: cookie, name: name, expected: expected, uuid: hash, hash: hash});
  113. deferred.resolve();
  114. return deferred.promise;
  115. },
  116. };
  117.  
  118. /**
  119. * Mixes in cookie methods
  120. *
  121. * @param {Dalek.DriverNative} DalekNative Native driver base class
  122. * @return {Dalek.DriverNative} DalekNative Native driver base class
  123. */
  124.  
  125. module.exports = function (DalekNative) {
  126. // mixin methods
  127. Object.keys(Cookie).forEach(function (fn) {
  128. DalekNative.prototype[fn] = Cookie[fn];
  129. });
  130.  
  131. return DalekNative;
  132. };
  133.