Class: TestCentricity::Environ

Inherits:
DataObject show all
Defined in:
lib/testcentricity_web/environment.rb

Instance Attribute Summary collapse

Attributes inherited from DataObject

#context, #current, #hash_table

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DataObject

current, set_current

Constructor Details

#initialize(data) ⇒ Environ

Returns a new instance of Environ.



51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/testcentricity_web/environment.rb', line 51

def initialize(data)
  @protocol	   = data['PROTOCOL']
  @hostname    = data['HOST_NAME']
  @base_url    = data['BASE_URL']
  @user_id	   = data['USER_ID']
  @password	   = data['PASSWORD']
  @append	     = data['APPEND']
  @option1	   = data['OPTIONAL_1']
  @option2	   = data['OPTIONAL_2']
  @dns	       = data['DNS']
  @db_username = data['DB_USERNAME']
  @db_password = data['DB_PASSWORD']
  super
end

Instance Attribute Details

#appendObject

Returns the value of attribute append.



44
45
46
# File 'lib/testcentricity_web/environment.rb', line 44

def append
  @append
end

#base_urlObject

Returns the value of attribute base_url.



41
42
43
# File 'lib/testcentricity_web/environment.rb', line 41

def base_url
  @base_url
end

#browserObject

Returns the value of attribute browser.



29
30
31
# File 'lib/testcentricity_web/environment.rb', line 29

def browser
  @browser
end

#db_passwordObject

Returns the value of attribute db_password.



49
50
51
# File 'lib/testcentricity_web/environment.rb', line 49

def db_password
  @db_password
end

#db_usernameObject

Returns the value of attribute db_username.



48
49
50
# File 'lib/testcentricity_web/environment.rb', line 48

def db_username
  @db_username
end

#deviceObject

Returns the value of attribute device.



31
32
33
# File 'lib/testcentricity_web/environment.rb', line 31

def device
  @device
end

#device_typeObject

Returns the value of attribute device_type.



32
33
34
# File 'lib/testcentricity_web/environment.rb', line 32

def device_type
  @device_type
end

#dnsObject

Returns the value of attribute dns.



47
48
49
# File 'lib/testcentricity_web/environment.rb', line 47

def dns
  @dns
end

#external_pageObject

Returns the value of attribute external_page.



37
38
39
# File 'lib/testcentricity_web/environment.rb', line 37

def external_page
  @external_page
end

#hostnameObject

Returns the value of attribute hostname.



40
41
42
# File 'lib/testcentricity_web/environment.rb', line 40

def hostname
  @hostname
end

#option1Object

Returns the value of attribute option1.



45
46
47
# File 'lib/testcentricity_web/environment.rb', line 45

def option1
  @option1
end

#option2Object

Returns the value of attribute option2.



46
47
48
# File 'lib/testcentricity_web/environment.rb', line 46

def option2
  @option2
end

#osObject

Returns the value of attribute os.



30
31
32
# File 'lib/testcentricity_web/environment.rb', line 30

def os
  @os
end

#passwordObject

Returns the value of attribute password.



43
44
45
# File 'lib/testcentricity_web/environment.rb', line 43

def password
  @password
end

#platformObject

Returns the value of attribute platform.



33
34
35
# File 'lib/testcentricity_web/environment.rb', line 33

def platform
  @platform
end

#portal_contextObject

Returns the value of attribute portal_context.



36
37
38
# File 'lib/testcentricity_web/environment.rb', line 36

def portal_context
  @portal_context
end

#portal_statusObject

Returns the value of attribute portal_status.



35
36
37
# File 'lib/testcentricity_web/environment.rb', line 35

def portal_status
  @portal_status
end

#protocolObject

Returns the value of attribute protocol.



39
40
41
# File 'lib/testcentricity_web/environment.rb', line 39

def protocol
  @protocol
end

#signed_inObject

Returns the value of attribute signed_in.



34
35
36
# File 'lib/testcentricity_web/environment.rb', line 34

def signed_in
  @signed_in
end

#user_idObject

Returns the value of attribute user_id.



42
43
44
# File 'lib/testcentricity_web/environment.rb', line 42

def user_id
  @user_id
end

Class Method Details

.browserObject



86
87
88
# File 'lib/testcentricity_web/environment.rb', line 86

def self.browser
  @browser
end

.device_typeObject



110
111
112
# File 'lib/testcentricity_web/environment.rb', line 110

def self.device_type
  @device_type
end

.external_pageObject



154
155
156
# File 'lib/testcentricity_web/environment.rb', line 154

def self.external_page
  @external_page
end

.get_screen_shotsObject



162
163
164
# File 'lib/testcentricity_web/environment.rb', line 162

def self.get_screen_shots
  @screen_shots
end

.is_desktop?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'lib/testcentricity_web/environment.rb', line 122

def self.is_desktop?
  @platform == :desktop
end

.is_device?Boolean

Returns:

  • (Boolean)


102
103
104
# File 'lib/testcentricity_web/environment.rb', line 102

def self.is_device?
  @device
end

.is_mobile?Boolean

Returns:

  • (Boolean)


118
119
120
# File 'lib/testcentricity_web/environment.rb', line 118

def self.is_mobile?
  @platform == :mobile
end

.is_signed_in?Boolean

Returns:

  • (Boolean)


130
131
132
# File 'lib/testcentricity_web/environment.rb', line 130

def self.is_signed_in?
  @signed_in
end

.osObject



94
95
96
# File 'lib/testcentricity_web/environment.rb', line 94

def self.os
  @os
end

.portal_contextObject



146
147
148
# File 'lib/testcentricity_web/environment.rb', line 146

def self.portal_context
  @portal_context
end

.portal_stateObject



138
139
140
# File 'lib/testcentricity_web/environment.rb', line 138

def self.portal_state
  @portal_status
end

.reset_contextsObject



166
167
168
# File 'lib/testcentricity_web/environment.rb', line 166

def self.reset_contexts
  @screen_shots = []
end

.save_screen_shot(screen_shot) ⇒ Object



158
159
160
# File 'lib/testcentricity_web/environment.rb', line 158

def self.save_screen_shot(screen_shot)
  @screen_shots.push(screen_shot)
end

.session_codeObject



66
67
68
69
70
71
72
# File 'lib/testcentricity_web/environment.rb', line 66

def self.session_code
  if @session_code == nil
    characters = ('a'..'z').to_a
    @session_code = (0..12).map{characters.sample}.join
  end
  @session_code
end

.session_idObject



74
75
76
# File 'lib/testcentricity_web/environment.rb', line 74

def self.session_id
  @session_id
end

.session_time_stampObject



78
79
80
# File 'lib/testcentricity_web/environment.rb', line 78

def self.session_time_stamp
  @session_time_stamp
end

.set_browser(browser) ⇒ Object



82
83
84
# File 'lib/testcentricity_web/environment.rb', line 82

def self.set_browser(browser)
  @browser = browser.downcase.to_sym
end

.set_device(device) ⇒ Object



98
99
100
# File 'lib/testcentricity_web/environment.rb', line 98

def self.set_device(device)
  @device = device
end

.set_device_type(type) ⇒ Object



106
107
108
# File 'lib/testcentricity_web/environment.rb', line 106

def self.set_device_type(type)
  @device_type = type.downcase
end

.set_external_page(state) ⇒ Object



150
151
152
# File 'lib/testcentricity_web/environment.rb', line 150

def self.set_external_page(state)
  @external_page = state
end

.set_os(os) ⇒ Object



90
91
92
# File 'lib/testcentricity_web/environment.rb', line 90

def self.set_os(os)
  @os = os
end

.set_platform(platform) ⇒ Object



114
115
116
# File 'lib/testcentricity_web/environment.rb', line 114

def self.set_platform(platform)
  @platform = platform
end

.set_portal_context(portal_context) ⇒ Object



142
143
144
# File 'lib/testcentricity_web/environment.rb', line 142

def self.set_portal_context(portal_context)
  @portal_context = portal_context
end

.set_portal_state(portal_state) ⇒ Object



134
135
136
# File 'lib/testcentricity_web/environment.rb', line 134

def self.set_portal_state(portal_state)
  @portal_status = portal_state
end

.set_signed_in(signed_in) ⇒ Object



126
127
128
# File 'lib/testcentricity_web/environment.rb', line 126

def self.set_signed_in(signed_in)
  @signed_in = signed_in
end