1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
from io import StringIO
from isort import Config, identify
from isort.identify import Import
def imports_in_code(code: str, **kwargs) -> list[identify.Import]:
return list(identify.imports(StringIO(code), **kwargs))
def test_top_only():
imports_in_function = """
import abc
def xyz():
import defg
"""
assert len(imports_in_code(imports_in_function)) == 2
assert len(imports_in_code(imports_in_function, top_only=True)) == 1
imports_after_class = """
import abc
class MyObject:
pass
import defg
"""
assert len(imports_in_code(imports_after_class)) == 2
assert len(imports_in_code(imports_after_class, top_only=True)) == 1
def test_top_doc_string():
assert (
len(
imports_in_code(
'''
#! /bin/bash import x
"""import abc
from y import z
"""
import abc
'''
)
)
== 1
)
def test_yield_and_raise_edge_cases():
assert not imports_in_code(
"""
raise SomeException("Blah") \\
from exceptionsInfo.popitem()[1]
"""
)
assert not imports_in_code(
"""
def generator_function():
yield \\
from other_function()[1]
"""
)
assert (
len(
imports_in_code(
"""
# one
# two
def function():
# three \\
import b
import a
"""
)
)
== 2
)
assert (
len(
imports_in_code(
"""
# one
# two
def function():
raise \\
import b
import a
"""
)
)
== 1
)
assert not imports_in_code(
"""
def generator_function():
(
yield
from other_function()[1]
)
"""
)
assert not imports_in_code(
"""
def generator_function():
(
(
((((
(((((
((
(((
yield
from other_function()[1]
)))))))))))))
)))
"""
)
assert (
len(
imports_in_code(
"""
def generator_function():
import os
yield \\
from other_function()[1]
"""
)
)
== 1
)
assert not imports_in_code(
"""
def generator_function():
(
(
((((
(((((
((
(((
yield
"""
)
assert not imports_in_code(
"""
def generator_function():
(
(
((((
(((((
((
(((
raise (
"""
)
assert not imports_in_code(
"""
def generator_function():
(
(
((((
(((((
((
(((
raise \\
from \\
"""
)
assert (
len(
imports_in_code(
"""
def generator_function():
(
(
((((
(((((
((
(((
raise \\
from \\
import c
import abc
import xyz
"""
)
)
== 2
)
def test_complex_examples():
assert (
len(
imports_in_code(
"""
import a, b, c; import n
x = (
1,
2,
3
)
import x
from os \\
import path
from os (
import path
)
from os import \\
path
from os \\
import (
path
)
from os import ( \\"""
)
)
== 9
)
assert not imports_in_code("from os import \\")
assert imports_in_code(
"""
from os \\
import (
system"""
) == [
Import(
line_number=2,
indented=False,
module="os",
attribute="system",
alias=None,
cimport=False,
file_path=None,
)
]
def test_aliases():
assert imports_in_code("import os as os")[0].alias == "os"
assert not imports_in_code(
"import os as os",
config=Config(
remove_redundant_aliases=True,
),
)[0].alias
assert imports_in_code("from os import path as path")[0].alias == "path"
assert not imports_in_code(
"from os import path as path", config=Config(remove_redundant_aliases=True)
)[0].alias
def test_indented():
assert not imports_in_code("import os")[0].indented
assert imports_in_code(" import os")[0].indented
assert imports_in_code("\timport os")[0].indented
|