Showing 103 of 135 total issues
Avoid deeply nested control flow statements. Open
item.css('rasd|AddressOnParent').first.content = nic_address_on_parent if nic_address_on_parent != orig_parent
- Create a ticketCreate a ticket
Avoid deeply nested control flow statements. Open
if !net_id
# TEMP FIX: permissions issues at the Org Level for vApp authors
# to "view" Org vDC Networks but they can see them at the
# Organization vDC level (tsugliani)
net_id = cfg.vdc[:networks][net[:vdc_network_name]]
- Create a ticketCreate a ticket
Avoid deeply nested control flow statements. Open
if hdd_parent_id == item.css('rasd|Parent').first.text
hdd_address_on_parent = [ hdd_address_on_parent, item.css('rasd|AddressOnParent').first.text.to_i ].max
end
- Create a ticketCreate a ticket
Avoid deeply nested control flow statements. Open
if guest_customization_admin_password.nil? ||
guest_customization_admin_password.empty?
errors << I18n.t('vagrant_vcloud.gc.admin_password_gs')
end
- Create a ticketCreate a ticket
Method compose_vapp_from_vm
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def compose_vapp_from_vm(vdc, vapp_name, vapp_description, vm_list = {}, network_config = [], _cfg)
- Create a ticketCreate a ticket
Avoid deeply nested control flow statements. Open
if !net_id
raise 'vCloud User credentials has insufficient privileges'
end
- Create a ticketCreate a ticket
Avoid deeply nested control flow statements. Open
changed = true if nic[:mac].upcase != orig_mac.upcase
- Create a ticketCreate a ticket
Method execute
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def execute
options = {}
opts = OptionParser.new do |o|
o.banner = 'Usage: vagrant vcloud [options]'
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid deeply nested control flow statements. Open
changed = true if orig_ip.nil? || nic[:ip].upcase != orig_ip.upcase
- Create a ticketCreate a ticket
Avoid deeply nested control flow statements. Open
if nic[:ip_mode].upcase == 'DHCP'
conn['vcloud:ipAddressingMode'] = 'DHCP'
elsif nic[:ip_mode].upcase == 'STATIC'
conn['vcloud:ipAddressingMode'] = 'MANUAL'
conn['vcloud:ipAddress'] = nic[:ip]
- Create a ticketCreate a ticket
Method create_vapp_from_template
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def create_vapp_from_template(vdc, vapp_name, vapp_description,
vapp_templateid, poweron = false)
- Create a ticketCreate a ticket
Method add_edge_gateway_rules
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def add_edge_gateway_rules(edge_gateway_name, vdc_id, edge_gateway_ip, vapp_id, ports)
- Create a ticketCreate a ticket
Method create_vapp_from_template
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def create_vapp_from_template(vdc, vapp_name, vapp_description, vapp_template_id, poweron = false)
- Create a ticketCreate a ticket
Method compose_vapp_from_vm
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def compose_vapp_from_vm(vdc, vapp_name, vapp_description,
vm_list = {}, network_config = {})
- Create a ticketCreate a ticket
Method read_state
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def read_state(env)
# FIXME: this part needs some cleanup
begin
cfg = env[:machine].provider_config
cnx = cfg.vcloud_cnx.driver
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method call
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def call(env)
cfg = env[:machine].provider_config
cnx = cfg.vcloud_cnx.driver
vapp_id = env[:machine].get_vapp_id
vm_name = cfg.name ? cfg.name.to_sym : env[:machine].name
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method find_edge_gateway_network
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def find_edge_gateway_network(edge_gateway_name, vdc_id, edge_gateway_ip)
params = {
'method' => :get,
'command' => '/query?type=edgeGateway&' \
'format=records&' \
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method set_metadata
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def set_metadata(link, data)
params = {
'method' => :post,
'command' => "/#{link}/metadata"
}
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method remove_edge_gateway_rules
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def remove_edge_gateway_rules(edge_gateway_name, vdc_id, edge_gateway_ip, vapp_id)
edge_vapp_ip = get_vapp_edge_public_ip(vapp_id)
edge_gateway_id = find_edge_gateway_id(edge_gateway_name, vdc_id)
params = {
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method call
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def call(env)
config = env[:machine].provider_config
if !config.vcloud_cnx or !config.vcloud_cnx.driver.auth_key
@logger.info('Connecting to vCloud Director...')
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"