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
5f7f19c2
Commit
5f7f19c2
authored
Nov 14, 2012
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Core Extraction] Adapted UserProjectIntegrator (with clean up).
parent
21af2670
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
96 deletions
+0
-96
user_project_integrator.rb
lib/cocoapods/installer/user_project_integrator.rb
+0
-0
user_project_integrator_spec.rb
spec/functional/user_project_integrator_spec.rb
+0
-96
user_project_integrator_spec.rb
spec/unit/installer/user_project_integrator_spec.rb
+0
-0
No files found.
lib/cocoapods/installer/user_project_integrator.rb
View file @
5f7f19c2
This diff is collapsed.
Click to expand it.
spec/functional/user_project_integrator_spec.rb
deleted
100644 → 0
View file @
21af2670
require
File
.
expand_path
(
'../../spec_helper'
,
__FILE__
)
describe
Pod
::
Installer
::
UserProjectIntegrator
do
extend
SpecHelper
::
TemporaryDirectory
before
do
sample_project_path
=
SpecHelper
.
create_sample_app_copy_from_fixture
(
'SampleProject'
)
config
.
project_root
=
sample_project_path
.
dirname
@podfile
=
Pod
::
Podfile
.
new
do
platform
:ios
xcodeproj
sample_project_path
,
'Test'
=>
:debug
link_with
'SampleProject'
# this is an app target!
pod
'JSONKit'
target
:test_runner
,
:exclusive
=>
true
do
link_with
'TestRunner'
pod
'Kiwi'
end
end
@sample_project_path
=
sample_project_path
@integrator
=
Pod
::
Installer
::
UserProjectIntegrator
.
new
(
@podfile
)
@integrator
.
integrate!
@sample_project
=
Xcodeproj
::
Project
.
new
(
sample_project_path
)
end
it
'adds references to the Pods static libraries to the Frameworks group'
do
@sample_project
[
"Frameworks/libPods.a"
].
should
.
not
==
nil
@sample_project
[
"Frameworks/libPods-test_runner.a"
].
should
.
not
==
nil
end
it
'creates a workspace with a name matching the project'
do
workspace_path
=
@sample_project_path
.
dirname
+
"SampleProject.xcworkspace"
workspace_path
.
should
.
exist
end
it
'adds the project being integrated to the workspace'
do
workspace
=
Xcodeproj
::
Workspace
.
new_from_xcworkspace
(
@sample_project_path
.
dirname
+
"SampleProject.xcworkspace"
)
workspace
.
projpaths
.
sort
.
should
==
%w{ Pods/Pods.xcodeproj SampleProject.xcodeproj }
end
it
'adds the Pods project to the workspace'
do
workspace
=
Xcodeproj
::
Workspace
.
new_from_xcworkspace
(
@sample_project_path
.
dirname
+
"SampleProject.xcworkspace"
)
workspace
.
projpaths
.
find
{
|
path
|
path
=~
/Pods.xcodeproj/
}.
should
.
not
.
be
.
nil
end
it
'sets the Pods xcconfig as the base config for each build configuration'
do
@podfile
.
target_definitions
.
each
do
|
_
,
definition
|
target
=
@sample_project
.
targets
.
find
{
|
t
|
t
.
name
==
definition
.
link_with
.
first
}
xcconfig_file
=
@sample_project
.
files
.
find
{
|
f
|
f
.
path
==
"Pods/
#{
definition
.
xcconfig_name
}
"
}
target
.
build_configurations
.
each
do
|
config
|
config
.
base_configuration_reference
.
should
==
xcconfig_file
end
end
end
it
'adds the libPods static library to the "Link binary with libraries" build phase of each target'
do
@podfile
.
target_definitions
.
each
do
|
_
,
definition
|
target
=
@sample_project
.
targets
.
find
{
|
t
|
t
.
name
==
definition
.
link_with
.
first
}
target
.
frameworks_build_phase
.
files
.
find
{
|
f
|
f
.
file_ref
.
name
==
definition
.
lib_name
}.
should
.
not
==
nil
end
end
it
'adds a Copy Pods Resources build phase to each target'
do
@podfile
.
target_definitions
.
each
do
|
_
,
definition
|
target
=
@sample_project
.
targets
.
find
{
|
t
|
t
.
name
==
definition
.
link_with
.
first
}
phase
=
target
.
shell_script_build_phases
.
find
{
|
bp
|
bp
.
name
==
"Copy Pods Resources"
}
phase
.
shell_script
.
strip
.
should
==
"
\"
${SRCROOT}/Pods/
#{
definition
.
copy_resources_script_name
}
\"
"
end
end
before
do
# Reset the cached TargetIntegrator#targets lists.
@integrator
.
instance_variable_set
(
:@target_integrators
,
nil
)
end
it
"only tries to integrate Pods libraries into user targets that haven't been integrated yet"
do
app_integrator
=
@integrator
.
target_integrators
.
find
{
|
t
|
t
.
target_definition
.
name
==
:default
}
test_runner_integrator
=
@integrator
.
target_integrators
.
find
{
|
t
|
t
.
target_definition
.
name
==
:test_runner
}
# Remove libPods.a from the app target. But don't do it through TargetIntegrator#targets,
# as it will return only those that still need integration.
app_target
=
app_integrator
.
user_project
.
targets
.
find
{
|
t
|
t
.
name
==
'SampleProject'
}
app_target
.
frameworks_build_phase
.
files
.
last
.
remove_from_project
app_integrator
.
expects
(
:add_pods_library
)
test_runner_integrator
.
expects
(
:add_pods_library
).
never
@integrator
.
integrate!
end
it
"does not even try to save the project if none of the target integrators had any work to do"
do
@integrator
.
target_integrators
.
first
.
user_project
.
expects
(
:save_as
).
never
@integrator
.
integrate!
end
end
spec/unit/installer/user_project_integrator_spec.rb
View file @
5f7f19c2
This diff is collapsed.
Click to expand it.
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