prompt
large_stringlengths
72
9.34k
completion
large_stringlengths
0
7.61k
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: <|fim_middle|> if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): <|fim_middle|> return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: <|fim_middle|> except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
raise ValueError()
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: <|fim_middle|> return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
dpd_dict[key] = int(value)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: <|fim_middle|> if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: <|fim_middle|> if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': <|fim_middle|> return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: <|fim_middle|> except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
raise ValueError()
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: <|fim_middle|> return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
lifetime_dict['value'] = int(value)
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def <|fim_middle|>(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
validate_dpd_dict
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def <|fim_middle|>(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
validate_lifetime_dict
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def <|fim_middle|>(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def dpd_help(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
lifetime_help
<|file_name|>utils.py<|end_file_name|><|fim▁begin|># (c) Copyright 2013 Hewlett-Packard Development Company, L.P. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # @author: Swaminathan Vasudevan, Hewlett-Packard. # """VPN Utilities and helper functions.""" from neutronclient.common import exceptions from neutronclient.i18n import _ dpd_supported_actions = ['hold', 'clear', 'restart', 'restart-by-peer', 'disabled'] dpd_supported_keys = ['action', 'interval', 'timeout'] lifetime_keys = ['units', 'value'] lifetime_units = ['seconds'] def validate_dpd_dict(dpd_dict): for key, value in dpd_dict.items(): if key not in dpd_supported_keys: message = _( "DPD Dictionary KeyError: " "Reason-Invalid DPD key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': dpd_supported_keys} raise exceptions.CommandError(message) if key == 'action' and value not in dpd_supported_actions: message = _( "DPD Dictionary ValueError: " "Reason-Invalid DPD action : " "'%(key_value)s' not in %(supported_action)s ") % { 'key_value': value, 'supported_action': dpd_supported_actions} raise exceptions.CommandError(message) if key in ('interval', 'timeout'): try: if int(value) <= 0: raise ValueError() except ValueError: message = _( "DPD Dictionary ValueError: " "Reason-Invalid positive integer value: " "'%(key)s' = %(value)s ") % { 'key': key, 'value': value} raise exceptions.CommandError(message) else: dpd_dict[key] = int(value) return def validate_lifetime_dict(lifetime_dict): for key, value in lifetime_dict.items(): if key not in lifetime_keys: message = _( "Lifetime Dictionary KeyError: " "Reason-Invalid unit key : " "'%(key)s' not in %(supported_key)s ") % { 'key': key, 'supported_key': lifetime_keys} raise exceptions.CommandError(message) if key == 'units' and value not in lifetime_units: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid units : " "'%(key_value)s' not in %(supported_units)s ") % { 'key_value': key, 'supported_units': lifetime_units} raise exceptions.CommandError(message) if key == 'value': try: if int(value) < 60: raise ValueError() except ValueError: message = _( "Lifetime Dictionary ValueError: " "Reason-Invalid value should be at least 60:" "'%(key_value)s' = %(value)s ") % { 'key_value': key, 'value': value} raise exceptions.CommandError(message) else: lifetime_dict['value'] = int(value) return def lifetime_help(policy): lifetime = _("%s lifetime attributes. " "'units'-seconds, default:seconds. " "'value'-non negative integer, default:3600.") % policy return lifetime def <|fim_middle|>(policy): dpd = _(" %s Dead Peer Detection attributes." " 'action'-hold,clear,disabled,restart,restart-by-peer." " 'interval' and 'timeout' are non negative integers. " " 'interval' should be less than 'timeout' value. " " 'action', default:hold 'interval', default:30, " " 'timeout', default:120.") % policy.capitalize() return dpd <|fim▁end|>
dpd_help
<|file_name|>__init__.py<|end_file_name|><|fim▁begin|><|fim▁hole|><|fim▁end|>
from __future__ import print_function from .patchpipette import PatchPipette
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top.<|fim▁hole|>import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback)<|fim▁end|>
import collectd from contextlib import closing, contextmanager
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): <|fim_middle|> def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
"""Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): <|fim_middle|> def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
"""Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues')
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): <|fim_middle|> def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch()
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): <|fim_middle|> # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg)
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): <|fim_middle|> else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response)
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: <|fim_middle|> return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
log_verbose('Invalid response: %r' % response)
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': <|fim_middle|> elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
REDIS_HOST = node.values[0]
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': <|fim_middle|> elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
REDIS_PORT = int(node.values[0])
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': <|fim_middle|> elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
VERBOSE_LOGGING = bool(node.values[0])
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': <|fim_middle|> else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
QUEUE_NAMES = list(node.values)
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: <|fim_middle|> log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key)
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: <|fim_middle|> def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
log_verbose('Not watching any queues')
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths <|fim_middle|> for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
return
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: <|fim_middle|> collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
return
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def <|fim_middle|>(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
fetch_queue_lengths
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def <|fim_middle|>(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
configure_callback
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def <|fim_middle|>(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def log_verbose(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
read_callback
<|file_name|>redis_queues.py<|end_file_name|><|fim▁begin|># This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; only version 2 of the License is applicable. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This plugin is to monitor queue lengths in Redis. Based on redis_info.py by # Garret Heaton <powdahound at gmail.com>, hence the GPL at the top. import collectd from contextlib import closing, contextmanager import socket # Host to connect to. Override in config by specifying 'Host'. REDIS_HOST = 'localhost' # Port to connect on. Override in config by specifying 'Port'. REDIS_PORT = 6379 # Verbose logging on/off. Override in config by specifying 'Verbose'. VERBOSE_LOGGING = False # Queue names to monitor. Override in config by specifying 'Queues'. QUEUE_NAMES = [] def fetch_queue_lengths(queue_names): """Connect to Redis server and request queue lengths. Return a dictionary from queue names to integers. """ try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((REDIS_HOST, REDIS_PORT)) log_verbose('Connected to Redis at %s:%s' % (REDIS_HOST, REDIS_PORT)) except socket.error, e: collectd.error('redis_queues plugin: Error connecting to %s:%d - %r' % (REDIS_HOST, REDIS_PORT, e)) return None queue_lengths = {} with closing(s) as redis_socket: for queue_name in queue_names: log_verbose('Requesting length of queue %s' % queue_name) redis_socket.sendall('llen %s\r\n' % queue_name) with closing(redis_socket.makefile('r')) as response_file: response = response_file.readline() if response.startswith(':'): try: queue_lengths[queue_name] = int(response[1:-1]) except ValueError: log_verbose('Invalid response: %r' % response) else: log_verbose('Invalid response: %r' % response) return queue_lengths def configure_callback(conf): """Receive configuration block""" global REDIS_HOST, REDIS_PORT, VERBOSE_LOGGING, QUEUE_NAMES for node in conf.children: if node.key == 'Host': REDIS_HOST = node.values[0] elif node.key == 'Port': REDIS_PORT = int(node.values[0]) elif node.key == 'Verbose': VERBOSE_LOGGING = bool(node.values[0]) elif node.key == 'Queues': QUEUE_NAMES = list(node.values) else: collectd.warning('redis_queues plugin: Unknown config key: %s.' % node.key) log_verbose('Configured with host=%s, port=%s' % (REDIS_HOST, REDIS_PORT)) for queue in QUEUE_NAMES: log_verbose('Watching queue %s' % queue) if not QUEUE_NAMES: log_verbose('Not watching any queues') def read_callback(): log_verbose('Read callback called') queue_lengths = fetch_queue_lengths(QUEUE_NAMES) if queue_lengths is None: # An earlier error, reported to collectd by fetch_queue_lengths return for queue_name, queue_length in queue_lengths.items(): log_verbose('Sending value: %s=%s' % (queue_name, queue_length)) val = collectd.Values(plugin='redis_queues') val.type = 'gauge' val.type_instance = queue_name val.values = [queue_length] val.dispatch() def <|fim_middle|>(msg): if not VERBOSE_LOGGING: return collectd.info('redis plugin [verbose]: %s' % msg) # register callbacks collectd.register_config(configure_callback) collectd.register_read(read_callback) <|fim▁end|>
log_verbose
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window)<|fim▁hole|> def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass<|fim▁end|>
self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): <|fim_middle|> class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): <|fim_middle|> def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): <|fim_middle|> def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): <|fim_middle|> def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): <|fim_middle|> def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): <|fim_middle|> def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): <|fim_middle|> def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): <|fim_middle|> def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): <|fim_middle|> def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): <|fim_middle|> def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): <|fim_middle|> def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): <|fim_middle|> def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): <|fim_middle|> def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
""" This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None))
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): <|fim_middle|> def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
""" This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window))
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): <|fim_middle|> def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): <|fim_middle|> def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): <|fim_middle|> def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): <|fim_middle|> def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window))
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): <|fim_middle|> def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile')
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): <|fim_middle|> def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window))
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): <|fim_middle|> class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath)
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: <|fim_middle|> class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
pass
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: <|fim_middle|> class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): <|fim_middle|> def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.file_to_open = None self.project_root = None
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): <|fim_middle|> def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
return [self.project_root]
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): <|fim_middle|> class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.file_to_open = file_to_open
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: <|fim_middle|> class SublimeSpy: pass <|fim▁end|>
def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): <|fim_middle|> def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
self.is_file_returns = None self.isfile_received_filepath = None
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): <|fim_middle|> class SublimeSpy: pass <|fim▁end|>
self.isfile_received_filepath = filepath return self.is_file_returns
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: <|fim_middle|> <|fim▁end|>
pass
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def <|fim_middle|>(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
setUp
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def <|fim_middle|>(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file_works_with_backslashes
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file_works_for_network_paths
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file_works_for_network_paths_and_complex_tests_folder
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file_when_tests_folder_is_not_unit_test_folder
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def <|fim_middle|>(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_if_source_file_exists_return_true
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def <|fim_middle|>(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_source_file_does_not_exist_if_file_already_is_a_source_file
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def <|fim_middle|>(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_if_source_file_does_not_exist_return_false
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def <|fim_middle|>(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_if_source_file_is_none_return_false
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def <|fim_middle|>(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_if_test_file_is_none_return_false
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_open_file
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def <|fim_middle|>(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_correct_file_name_sent_to_os_is_file_method
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def <|fim_middle|>(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_file_exists_ignores_trailing_slash_in_root_path
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_if_test_file_exists_return_true
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_test_file_exists_returns_true_if_test_file_is_input
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def <|fim_middle|>(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_if_test_file_does_not_exist_return_false
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def <|fim_middle|>(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
test_replace_back_slashes_with_forward_slashes
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def <|fim_middle|>(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
__init__
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def <|fim_middle|>(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
folders
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def <|fim_middle|>(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
open_file
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def <|fim_middle|>(self): self.is_file_returns = None self.isfile_received_filepath = None def isfile(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
__init__
<|file_name|>test_file_command.py<|end_file_name|><|fim▁begin|>import unittest from app.commands.file_command import FileCommand class TestFileCommand(unittest.TestCase): def setUp(self): self.window = WindowSpy() self.settings = PluginSettingsStub() self.sublime = SublimeSpy() self.os_path = OsPathSpy() # SUT self.command = FileCommand(self.settings, self.os_path, self.sublime) def test_open_source_file(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_with_backslashes(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths(self): self.settings.tests_folder = 'tests' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_works_for_network_paths_and_complex_tests_folder(self): self.settings.tests_folder = 'tests/unit' self.command.open_source_file('\\\\server\\dev\\root\\tests\\unit\\Service\\SearchParametersMapperTest.php', self.window) self.assertEqual('\\\\server\\dev\\root\\Service\\SearchParametersMapper.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/file.php', self.window.file_to_open) def test_open_source_file_remove_only_first_appearance_of_tests_folder_in_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests' self.command.open_source_file('C:/path/to/root/tests/unit/path/to/tests/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/tests/file.php', self.window.file_to_open) def test_open_source_file_when_tests_folder_is_not_unit_test_folder_remove_only_unit_folder_after_test_path(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests_folder' self.command.open_source_file('C:/path/to/root/tests_folder/unit/path/to/unit/fileTest.php', self.window) self.assertEqual('C:/path/to/root/path/to/unit/file.php', self.window.file_to_open) def test_if_source_file_exists_return_true(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('C:\\path\\to\\root\\tests\\unit\\path\\to\\fileTest.php') self.assertTrue(actual) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_source_file_does_not_exist_if_file_already_is_a_source_file(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True actual = self.command.source_file_exists('root\path\src\Gallery\ImageType.php') self.assertFalse(actual) def test_if_source_file_does_not_exist_return_false(self): self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.source_file_exists('C:/path/to/root/path/to/fileTest.php')) self.assertEqual('C:/path/to/root/path/to/file.php', self.os_path.isfile_received_filepath) def test_if_source_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.assertFalse(self.command.source_file_exists(None)) def test_if_test_file_is_none_return_false(self): """ This case is possible when currently opened tab in sublime is untitled (i.e. not yet created) file """ self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.assertFalse(self.command.test_file_exists(None, self.window)) def test_open_file(self): self.settings.root = 'C:/path/to/root' self.settings.tests_folder = 'tests/unit' self.command.open_test_file('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window.file_to_open) def test_correct_file_name_sent_to_os_is_file_method(self): self.window.project_root = 'C:/path/to/root' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_file_exists_ignores_trailing_slash_in_root_path(self): self.window.project_root = 'C:/path/to/root/' self.settings.root = '' self.settings.tests_folder = 'tests/unit' self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) def test_if_test_file_exists_return_true(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_test_file_exists_returns_true_if_test_file_is_input(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = True self.assertTrue(self.command.test_file_exists('C:/path/to/root/tests/unit/path/to/fileTest.php', self.window)) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath, 'Expected test file filepath as parameter to isfile') def test_if_test_file_does_not_exist_return_false(self): self.settings.root = 'C:/path/to/root/' self.settings.tests_folder = 'tests/unit' self.os_path.is_file_returns = False self.assertFalse(self.command.test_file_exists('C:/path/to/root/path/to/file.php', self.window)) def test_replace_back_slashes_with_forward_slashes(self): self.window.project_root = 'C:\\path\\to\\root' self.settings.root = '' self.settings.tests_folder = 'tests\\unit' self.command.test_file_exists('C:\\path\\to\\root\\path\\to\\file.php', self.window) self.assertEqual('C:/path/to/root/tests/unit/path/to/fileTest.php', self.os_path.isfile_received_filepath) class PluginSettingsStub: pass class WindowSpy: def __init__(self): self.file_to_open = None self.project_root = None def folders(self): return [self.project_root] def open_file(self, file_to_open): self.file_to_open = file_to_open class OsPathSpy: def __init__(self): self.is_file_returns = None self.isfile_received_filepath = None def <|fim_middle|>(self, filepath): self.isfile_received_filepath = filepath return self.is_file_returns class SublimeSpy: pass <|fim▁end|>
isfile
<|file_name|>func_use_for_or_listcomp_var.py<|end_file_name|><|fim▁begin|>"""test a warning is triggered when using for a lists comprehension variable""" __revision__ = 'yo' TEST_LC = [C for C in __revision__ if C.isalpha()] print C # WARN C = 4 print C # this one shouldn't trigger any warning<|fim▁hole|>B = [B for B in __revision__ if B.isalpha()] print B # nor this one for var1, var2 in TEST_LC: var1 = var2 + 4 print var1 # WARN for note in __revision__: note.something() for line in __revision__: for note in line: A = note.anotherthing() for x in []: pass for x in range(3): print (lambda : x)() # OK<|fim▁end|>
<|file_name|>item_ring_set_commando_utility_b_01_01.py<|end_file_name|><|fim▁begin|>import sys def setup(core, object): object.setAttachment('radial_filename', 'ring/unity') object.setAttachment('objType', 'ring') object.setStfFilename('static_item_n') object.setStfName('item_ring_set_commando_utility_b_01_01')<|fim▁hole|> object.setStringAttribute('class_required', 'Commando') object.setIntAttribute('cat_stat_mod_bonus.@stat_n:constitution_modified', 10) object.setIntAttribute('cat_stat_mod_bonus.@stat_n:strength_modified', 15) object.setIntAttribute('cat_skill_mod_bonus.@stat_n:expertise_devastation_bonus', 5) object.setStringAttribute('@set_bonus:piece_bonus_count_3', '@set_bonus:set_bonus_commando_utility_b_1') object.setStringAttribute('@set_bonus:piece_bonus_count_4', '@set_bonus:set_bonus_commando_utility_b_2') object.setStringAttribute('@set_bonus:piece_bonus_count_5', '@set_bonus:set_bonus_commando_utility_b_3') object.setAttachment('setBonus', 'set_bonus_commando_utility_b') return<|fim▁end|>
object.setDetailFilename('static_item_d') object.setDetailName('item_ring_set_commando_utility_b_01_01') object.setIntAttribute('required_combat_level', 85)
<|file_name|>item_ring_set_commando_utility_b_01_01.py<|end_file_name|><|fim▁begin|>import sys def setup(core, object): <|fim_middle|> <|fim▁end|>
object.setAttachment('radial_filename', 'ring/unity') object.setAttachment('objType', 'ring') object.setStfFilename('static_item_n') object.setStfName('item_ring_set_commando_utility_b_01_01') object.setDetailFilename('static_item_d') object.setDetailName('item_ring_set_commando_utility_b_01_01') object.setIntAttribute('required_combat_level', 85) object.setStringAttribute('class_required', 'Commando') object.setIntAttribute('cat_stat_mod_bonus.@stat_n:constitution_modified', 10) object.setIntAttribute('cat_stat_mod_bonus.@stat_n:strength_modified', 15) object.setIntAttribute('cat_skill_mod_bonus.@stat_n:expertise_devastation_bonus', 5) object.setStringAttribute('@set_bonus:piece_bonus_count_3', '@set_bonus:set_bonus_commando_utility_b_1') object.setStringAttribute('@set_bonus:piece_bonus_count_4', '@set_bonus:set_bonus_commando_utility_b_2') object.setStringAttribute('@set_bonus:piece_bonus_count_5', '@set_bonus:set_bonus_commando_utility_b_3') object.setAttachment('setBonus', 'set_bonus_commando_utility_b') return
<|file_name|>item_ring_set_commando_utility_b_01_01.py<|end_file_name|><|fim▁begin|>import sys def <|fim_middle|>(core, object): object.setAttachment('radial_filename', 'ring/unity') object.setAttachment('objType', 'ring') object.setStfFilename('static_item_n') object.setStfName('item_ring_set_commando_utility_b_01_01') object.setDetailFilename('static_item_d') object.setDetailName('item_ring_set_commando_utility_b_01_01') object.setIntAttribute('required_combat_level', 85) object.setStringAttribute('class_required', 'Commando') object.setIntAttribute('cat_stat_mod_bonus.@stat_n:constitution_modified', 10) object.setIntAttribute('cat_stat_mod_bonus.@stat_n:strength_modified', 15) object.setIntAttribute('cat_skill_mod_bonus.@stat_n:expertise_devastation_bonus', 5) object.setStringAttribute('@set_bonus:piece_bonus_count_3', '@set_bonus:set_bonus_commando_utility_b_1') object.setStringAttribute('@set_bonus:piece_bonus_count_4', '@set_bonus:set_bonus_commando_utility_b_2') object.setStringAttribute('@set_bonus:piece_bonus_count_5', '@set_bonus:set_bonus_commando_utility_b_3') object.setAttachment('setBonus', 'set_bonus_commando_utility_b') return<|fim▁end|>
setup
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): """Serve metadata.""" def __init__(self): self._cache = memorycache.get_client() self.conductor_api = conductor.API() def get_metadata_by_remote_address(self, address): if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data def get_metadata_by_instance_id(self, instance_id, address): cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response def _handle_remote_ip_request(self, req): remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None <|fim▁hole|><|fim▁end|>
return meta_data
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): <|fim_middle|> <|fim▁end|>
"""Serve metadata.""" def __init__(self): self._cache = memorycache.get_client() self.conductor_api = conductor.API() def get_metadata_by_remote_address(self, address): if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data def get_metadata_by_instance_id(self, instance_id, address): cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response def _handle_remote_ip_request(self, req): remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None return meta_data
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): """Serve metadata.""" def __init__(self): <|fim_middle|> def get_metadata_by_remote_address(self, address): if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data def get_metadata_by_instance_id(self, instance_id, address): cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response def _handle_remote_ip_request(self, req): remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None return meta_data <|fim▁end|>
self._cache = memorycache.get_client() self.conductor_api = conductor.API()
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): """Serve metadata.""" def __init__(self): self._cache = memorycache.get_client() self.conductor_api = conductor.API() def get_metadata_by_remote_address(self, address): <|fim_middle|> def get_metadata_by_instance_id(self, instance_id, address): cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response def _handle_remote_ip_request(self, req): remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None return meta_data <|fim▁end|>
if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): """Serve metadata.""" def __init__(self): self._cache = memorycache.get_client() self.conductor_api = conductor.API() def get_metadata_by_remote_address(self, address): if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data def get_metadata_by_instance_id(self, instance_id, address): <|fim_middle|> @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response def _handle_remote_ip_request(self, req): remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None return meta_data <|fim▁end|>
cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): """Serve metadata.""" def __init__(self): self._cache = memorycache.get_client() self.conductor_api = conductor.API() def get_metadata_by_remote_address(self, address): if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data def get_metadata_by_instance_id(self, instance_id, address): cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): <|fim_middle|> def _handle_remote_ip_request(self, req): remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None return meta_data <|fim▁end|>
if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response
<|file_name|>handler.py<|end_file_name|><|fim▁begin|># Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Metadata request handler.""" import hashlib import hmac import os from oslo_config import cfg from oslo_log import log as logging import six import webob.dec import webob.exc from nova.api.metadata import base from nova import conductor from nova import exception from nova.i18n import _ from nova.i18n import _LE from nova.i18n import _LW from nova.openstack.common import memorycache from nova import utils from nova import wsgi CACHE_EXPIRATION = 15 # in seconds CONF = cfg.CONF CONF.import_opt('use_forwarded_for', 'nova.api.auth') metadata_proxy_opts = [ cfg.BoolOpt( 'service_metadata_proxy', default=False, help='Set flag to indicate Neutron will proxy metadata requests and ' 'resolve instance ids.'), cfg.StrOpt( 'metadata_proxy_shared_secret', default='', secret=True, help='Shared secret to validate proxies Neutron metadata requests'), ] CONF.register_opts(metadata_proxy_opts, 'neutron') LOG = logging.getLogger(__name__) class MetadataRequestHandler(wsgi.Application): """Serve metadata.""" def __init__(self): self._cache = memorycache.get_client() self.conductor_api = conductor.API() def get_metadata_by_remote_address(self, address): if not address: raise exception.FixedIpNotFoundForAddress(address=address) cache_key = 'metadata-%s' % address data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_address(self.conductor_api, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data def get_metadata_by_instance_id(self, instance_id, address): cache_key = 'metadata-%s' % instance_id data = self._cache.get(cache_key) if data: return data try: data = base.get_metadata_by_instance_id(self.conductor_api, instance_id, address) except exception.NotFound: return None self._cache.set(cache_key, data, CACHE_EXPIRATION) return data @webob.dec.wsgify(RequestClass=wsgi.Request) def __call__(self, req): if os.path.normpath(req.path_info) == "/": resp = base.ec2_md_print(base.VERSIONS + ["latest"]) req.response.body = resp req.response.content_type = base.MIME_TYPE_TEXT_PLAIN return req.response if CONF.neutron.service_metadata_proxy: meta_data = self._handle_instance_id_request(req) else: if req.headers.get('X-Instance-ID'): LOG.warning( _LW("X-Instance-ID present in request headers. The " "'service_metadata_proxy' option must be " "enabled to process this header.")) meta_data = self._handle_remote_ip_request(req) if meta_data is None: raise webob.exc.HTTPNotFound() try: data = meta_data.lookup(req.path_info) except base.InvalidMetadataPath: raise webob.exc.HTTPNotFound() if callable(data): return data(req, meta_data) resp = base.ec2_md_print(data) if isinstance(resp, six.text_type): req.response.text = resp else: req.response.body = resp req.response.content_type = meta_data.get_mimetype() return req.response def _handle_remote_ip_request(self, req): <|fim_middle|> def _handle_instance_id_request(self, req): instance_id = req.headers.get('X-Instance-ID') tenant_id = req.headers.get('X-Tenant-ID') signature = req.headers.get('X-Instance-ID-Signature') remote_address = req.headers.get('X-Forwarded-For') # Ensure that only one header was passed if instance_id is None: msg = _('X-Instance-ID header is missing from request.') elif signature is None: msg = _('X-Instance-ID-Signature header is missing from request.') elif tenant_id is None: msg = _('X-Tenant-ID header is missing from request.') elif not isinstance(instance_id, six.string_types): msg = _('Multiple X-Instance-ID headers found within request.') elif not isinstance(tenant_id, six.string_types): msg = _('Multiple X-Tenant-ID headers found within request.') else: msg = None if msg: raise webob.exc.HTTPBadRequest(explanation=msg) expected_signature = hmac.new( CONF.neutron.metadata_proxy_shared_secret, instance_id, hashlib.sha256).hexdigest() if not utils.constant_time_compare(expected_signature, signature): if instance_id: LOG.warning(_LW('X-Instance-ID-Signature: %(signature)s does ' 'not match the expected value: ' '%(expected_signature)s for id: ' '%(instance_id)s. Request From: ' '%(remote_address)s'), {'signature': signature, 'expected_signature': expected_signature, 'instance_id': instance_id, 'remote_address': remote_address}) msg = _('Invalid proxy request signature.') raise webob.exc.HTTPForbidden(explanation=msg) try: meta_data = self.get_metadata_by_instance_id(instance_id, remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for instance id: %s'), instance_id) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for instance id: %s'), instance_id) elif meta_data.instance.project_id != tenant_id: LOG.warning(_LW("Tenant_id %(tenant_id)s does not match tenant_id " "of instance %(instance_id)s."), {'tenant_id': tenant_id, 'instance_id': instance_id}) # causes a 404 to be raised meta_data = None return meta_data <|fim▁end|>
remote_address = req.remote_addr if CONF.use_forwarded_for: remote_address = req.headers.get('X-Forwarded-For', remote_address) try: meta_data = self.get_metadata_by_remote_address(remote_address) except Exception: LOG.exception(_LE('Failed to get metadata for ip: %s'), remote_address) msg = _('An unknown error has occurred. ' 'Please try your request again.') raise webob.exc.HTTPInternalServerError( explanation=six.text_type(msg)) if meta_data is None: LOG.error(_LE('Failed to get metadata for ip: %s'), remote_address) return meta_data