Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
c79b5c34
Commit
c79b5c34
authored
Apr 10, 2013
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Integration] Remove rendundant tests
parent
13f0008e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
245 deletions
+0
-245
integration_spec.rb
spec/integration_spec.rb
+0
-245
No files found.
spec/integration_spec.rb
View file @
c79b5c34
...
...
@@ -41,10 +41,6 @@ module Pod
config
.
integrate_targets
=
false
end
#-------------------------------------------------------------------------#
describe
"Single platform"
do
# xit "includes automatically inherited subspecs" do; end
#--------------------------------------#
...
...
@@ -118,245 +114,4 @@ module Pod
end
end
#-------------------------------------------------------------------------#
[
:ios
,
:osx
].
each
do
|
test_platform
|
describe
"Multi-platform (
#{
test_platform
}
)"
do
before
do
FileUtils
.
cp_r
(
fixture
(
'integration/.'
),
config
.
sandbox_root
)
end
#--------------------------------------#
it
"runs the optional pre-install callback defined in the Podfile *before* the targets are integrated but *after* the pods have been downloaded"
do
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
'dummy'
pod
'SSZipArchive'
,
'0.1.0'
pre_install
do
|
installer
|
memo
=
"PODS:
#{
installer
.
pods
*
', '
}
LIBRARIES:
#{
installer
.
libraries
.
map
(
&
:name
)
*
', '
}
"
File
.
open
(
installer
.
config
.
sandbox_root
+
'memo.txt'
,
'w'
)
{
|
f
|
f
.
puts
memo
}
end
end
Installer
.
new
(
config
.
sandbox
,
podfile
).
install!
File
.
open
(
config
.
sandbox_root
+
'memo.txt'
,
'rb'
).
read
.
should
==
"PODS:SSZipArchive (0.1.0) LIBRARIES:Pods
\n
"
end
#--------------------------------------#
it
"runs the optional post-install callback defined in the Podfile *before* the project is saved to disk"
do
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
'dummy'
pod
'SSZipArchive'
,
'0.1.0'
post_install
do
|
installer
|
target
=
installer
.
project
.
targets
.
first
target
.
build_configurations
.
each
do
|
config
|
config
.
build_settings
[
'GCC_ENABLE_OBJC_GC'
]
=
'supported'
end
end
end
Installer
.
new
(
config
.
sandbox
,
podfile
).
install!
project
=
Xcodeproj
::
Project
.
new
(
config
.
sandbox
.
project_path
)
project
.
targets
.
first
.
build_configurations
.
map
do
|
config
|
config
.
build_settings
[
'GCC_ENABLE_OBJC_GC'
]
end
.
should
==
%w{ supported supported }
end
#--------------------------------------#
it
"activates required pods and create a working static library xcode project"
do
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
'dummy'
if
test_platform
==
:ios
pod
'Reachability'
,
'> 2.0.5'
end
pod
'JSONKit'
,
'>= 1.0'
pod
'SSZipArchive'
,
'< 0.1.2'
end
installer
=
Installer
.
new
(
config
.
sandbox
,
podfile
)
installer
.
install!
lockfile_contents
=
{
'PODS'
=>
[
'JSONKit (999.999.999)'
,
'Reachability (3.1.0)'
,
'SSZipArchive (0.1.1)'
,
],
'DEPENDENCIES'
=>
[
"JSONKit (>= 1.0)"
,
"Reachability (> 2.0.5)"
,
"SSZipArchive (< 0.1.2)"
,
],
"COCOAPODS"
=>
VERSION
}
unless
test_platform
==
:ios
# No Reachability is required by ASIHTTPRequest on OSX
lockfile_contents
[
'DEPENDENCIES'
].
delete_at
(
1
)
lockfile_contents
[
'PODS'
].
delete_at
(
1
)
end
lockfile
=
installer
.
lockfile
.
to_hash
lockfile
.
delete
(
"SPEC CHECKSUMS"
)
lockfile
.
should
==
lockfile_contents
root
=
config
.
sandbox_root
(
root
+
'Pods.xcconfig'
).
read
.
should
==
installer
.
libraries
.
first
.
xcconfig
.
to_s
project_file
=
(
root
+
'Pods.xcodeproj/project.pbxproj'
).
to_s
saved_project
=
Xcodeproj
.
read_plist
(
project_file
)
saved_project
.
should
==
installer
.
pods_project
.
to_hash
should_xcodebuild
(
podfile
.
target_definitions
[
'Pods'
])
end
#--------------------------------------#
it
"overwrites an existing project.pbxproj file"
do
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
'dummy'
pod
'JSONKit'
end
installer
=
Installer
.
new
(
config
.
sandbox
,
podfile
)
installer
.
install!
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
'dummy'
pod
'SSZipArchive'
,
'0.1.0'
end
installer
=
Installer
.
new
(
config
.
sandbox
,
podfile
)
installer
.
install!
project
=
Xcodeproj
::
Project
.
new
(
config
.
sandbox_root
+
'Pods.xcodeproj'
)
disk_source_files
=
project
.
files
.
sort
.
reject
{
|
f
|
f
.
build_files
.
empty?
}
installer_source_files
=
installer
.
pods_project
.
files
.
sort
.
reject
{
|
f
|
f
.
build_files
.
empty?
}
disk_source_files
.
should
==
installer_source_files
end
#--------------------------------------#
it
"creates a project with multiple targets"
do
podfile
=
Podfile
.
new
do
platform
test_platform
pod
'ASIHTTPRequest'
target
:debug
do
pod
'SSZipArchive'
,
'0.1.0'
end
target
:test
,
:exclusive
=>
true
do
pod
'JSONKit'
end
end
installer
=
Installer
.
new
(
config
.
sandbox
,
podfile
)
installer
.
install!
project
=
Xcodeproj
::
Project
.
new
(
config
.
sandbox_root
+
'Pods.xcodeproj'
)
project
.
targets
.
count
.
should
==
3
project
.
targets
.
each
do
|
target
|
phase
=
target
.
build_phases
.
find
{
|
phase
|
phase
.
isa
==
'PBXSourcesBuildPhase'
}
files
=
phase
.
files
.
map
{
|
bf
|
bf
.
file_ref
.
name
}
case
target
.
product_name
when
'Pods'
files
.
should
.
include
"ASIHTTPRequest.m"
files
.
should
.
not
.
include
"SSZipArchive.m"
files
.
should
.
not
.
include
"JSONKit.m"
when
'Pods-debug'
files
.
should
.
include
"ASIHTTPRequest.m"
files
.
should
.
include
"SSZipArchive.m"
files
.
should
.
not
.
include
"JSONKit.m"
when
'Pods-test'
files
.
should
.
include
"JSONKit.m"
files
.
should
.
not
.
include
"ASIHTTPRequest.m"
files
.
should
.
not
.
include
"SSZipArchive.m"
end
end
expected_files
=
%w[
Pods.xcconfig
Pods-debug.xcconfig
Pods-test.xcconfig
Pods-resources.sh
Pods-debug-resources.sh
Pods-test-resources.sh
]
expected_files
.
each
do
|
file
|
(
config
.
sandbox_root
+
file
).
should
.
exist
end
should_xcodebuild
(
podfile
.
target_definitions
[
'Pods'
])
should_xcodebuild
(
podfile
.
target_definitions
[
:debug
])
should_xcodebuild
(
podfile
.
target_definitions
[
:test
])
end
#--------------------------------------#
it
"sets up an existing project with pods"
do
config
.
integrate_targets
=
true
basename
=
test_platform
==
:ios
?
'iPhone'
:
'Mac'
projpath
=
temporary_directory
+
'ASIHTTPRequest.xcodeproj'
FileUtils
.
cp_r
(
fixture
(
"integration/ASIHTTPRequest/
#{
basename
}
.xcodeproj"
),
projpath
)
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
projpath
pod
'SSZipArchive'
,
'0.1.0'
end
installer
=
Installer
.
new
(
config
.
sandbox
,
podfile
)
installer
.
install!
workspace
=
Xcodeproj
::
Workspace
.
new_from_xcworkspace
(
temporary_directory
+
'ASIHTTPRequest.xcworkspace'
)
workspace
.
projpaths
.
sort
.
should
==
[
'ASIHTTPRequest.xcodeproj'
,
'Pods/Pods.xcodeproj'
]
project
=
Xcodeproj
::
Project
.
new
(
projpath
)
libPods
=
project
.
files
.
find
{
|
f
|
f
.
name
==
'libPods.a'
}
target
=
project
.
targets
.
first
target
.
build_configurations
.
each
do
|
config
|
config
.
base_configuration_reference
.
path
.
should
==
'Pods/Pods.xcconfig'
end
target
.
frameworks_build_phase
.
files
.
should
.
include
libPods
.
build_files
.
first
end
#--------------------------------------#
it
"should prevent duplication cleaning headers symlinks with multiple targets"
do
podfile
=
Podfile
.
new
do
platform
test_platform
xcodeproj
'dummy'
target
(
:debug
)
{
pod
'SSZipArchive'
,
'0.1.0'
}
target
(
:test
,
:exclusive
=>
true
)
{
pod
'JSONKit'
}
pod
'ASIHTTPRequest'
,
'1.8.1'
end
installer
=
Installer
.
new
(
config
.
sandbox
,
podfile
)
installer
.
install!
root
=
config
.
sandbox_root
(
root
+
'Pods.xcconfig'
).
should
.
exist
(
root
+
'Headers'
).
should
.
exist
(
root
+
'Headers/SSZipArchive'
).
should
.
exist
(
root
+
'Headers/ASIHTTPRequest'
).
should
.
exist
(
root
+
'Headers/JSONKit'
).
should
.
exist
Pathname
.
glob
(
File
.
join
(
root
.
to_s
,
'Headers/ASIHTTPRequest/*.h'
)).
size
.
should
.
be
>
0
Pathname
.
glob
(
File
.
join
(
root
.
to_s
,
'Headers/SSZipArchive/*.h'
)).
size
.
should
.
be
>
0
Pathname
.
glob
(
File
.
join
(
root
.
to_s
,
'Headers/JSONKit/*.h'
)).
size
.
should
.
be
>
0
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment