Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f1cdf2e6
Unverified
Commit
f1cdf2e6
authored
Nov 09, 2020
by
Jonah Williams
Committed by
GitHub
Nov 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "[flutter_tools] restore pub caching functionality on run/test (#70056)" (#70132)
This reverts commit
6e5845f0
.
parent
b18e2a1c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
209 deletions
+1
-209
pub.dart
packages/flutter_tools/lib/src/dart/pub.dart
+1
-23
flutter_command.dart
packages/flutter_tools/lib/src/runner/flutter_command.dart
+0
-1
pub_get_test.dart
...s/flutter_tools/test/general.shard/dart/pub_get_test.dart
+0
-184
throwing_pub.dart
packages/flutter_tools/test/src/throwing_pub.dart
+0
-1
No files found.
packages/flutter_tools/lib/src/dart/pub.dart
View file @
f1cdf2e6
...
...
@@ -94,7 +94,6 @@ abstract class Pub {
bool
offline
=
false
,
bool
generateSyntheticPackage
=
false
,
String
flutterRootOverride
,
bool
checkUpToDate
=
false
,
});
/// Runs pub in 'batch' mode.
...
...
@@ -119,6 +118,7 @@ abstract class Pub {
bool
showTraceForErrors
,
});
/// Runs pub in 'interactive' mode.
///
/// directly piping the stdin stream of this process to that of pub, and the
...
...
@@ -164,33 +164,12 @@ class _DefaultPub implements Pub {
bool
offline
=
false
,
bool
generateSyntheticPackage
=
false
,
String
flutterRootOverride
,
bool
checkUpToDate
=
false
,
})
async
{
directory
??=
_fileSystem
.
currentDirectory
.
path
;
final
File
packageConfigFile
=
_fileSystem
.
file
(
_fileSystem
.
path
.
join
(
directory
,
'.dart_tool'
,
'package_config.json'
));
final
Directory
generatedDirectory
=
_fileSystem
.
directory
(
_fileSystem
.
path
.
join
(
directory
,
'.dart_tool'
,
'flutter_gen'
));
final
File
lastVersion
=
_fileSystem
.
file
(
_fileSystem
.
path
.
join
(
directory
,
'.dart_tool'
,
'version'
));
final
File
currentVersion
=
_fileSystem
.
file
(
_fileSystem
.
path
.
join
(
Cache
.
flutterRoot
,
'version'
));
final
File
pubspecYaml
=
_fileSystem
.
file
(
_fileSystem
.
path
.
join
(
directory
,
'pubspec.yaml'
));
// If the pubspec.yaml is older than the package config file and the last
// flutter version used is the same as the current version skip pub get.
// This will incorrectly skip pub on the master branch if dependencies
// are being added/removed from the flutter framework packages, but this
// can be worked around by manually running pub.
if
(
checkUpToDate
&&
packageConfigFile
.
existsSync
()
&&
pubspecYaml
.
lastModifiedSync
().
isBefore
(
packageConfigFile
.
lastModifiedSync
())
&&
lastVersion
.
existsSync
()
&&
lastVersion
.
readAsStringSync
()
==
currentVersion
.
readAsStringSync
())
{
_logger
.
printTrace
(
'Skipping pub get: version match.'
);
return
;
}
final
String
command
=
upgrade
?
'upgrade'
:
'get'
;
final
Status
status
=
_logger
.
startProgress
(
...
...
@@ -228,7 +207,6 @@ class _DefaultPub implements Pub {
if
(!
packageConfigFile
.
existsSync
())
{
throwToolExit
(
'
$directory
: pub did not create .dart_tools/package_config.json file.'
);
}
lastVersion
.
writeAsStringSync
(
currentVersion
.
readAsStringSync
());
await
_updatePackageConfig
(
packageConfigFile
,
generatedDirectory
,
...
...
packages/flutter_tools/lib/src/runner/flutter_command.dart
View file @
f1cdf2e6
...
...
@@ -1061,7 +1061,6 @@ abstract class FlutterCommand extends Command<void> {
await
pub
.
get
(
context:
PubContext
.
getVerifyContext
(
name
),
generateSyntheticPackage:
project
.
manifest
.
generateSyntheticPackage
,
checkUpToDate:
true
,
);
await
project
.
regeneratePlatformSpecificTooling
();
}
...
...
packages/flutter_tools/test/general.shard/dart/pub_get_test.dart
View file @
f1cdf2e6
...
...
@@ -30,187 +30,6 @@ void main() {
MockDirectory
.
findCache
=
false
;
});
testWithoutContext
(
'checkUpToDate skips pub get if the package config is newer than the pubspec '
'and the current framework version is the same as the last version'
,
()
async
{
final
FakeProcessManager
processManager
=
FakeProcessManager
.
list
(<
FakeCommand
>[]);
final
BufferLogger
logger
=
BufferLogger
.
test
();
final
MemoryFileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'.dart_tool/package_config.json'
).
createSync
(
recursive:
true
);
fileSystem
.
file
(
'.dart_tool/version'
).
writeAsStringSync
(
'a'
);
fileSystem
.
file
(
'version'
).
writeAsStringSync
(
'a'
);
final
Pub
pub
=
Pub
(
fileSystem:
fileSystem
,
logger:
logger
,
processManager:
processManager
,
usage:
MockUsage
(),
platform:
FakePlatform
(
environment:
const
<
String
,
String
>{},
),
botDetector:
const
BotDetectorAlwaysNo
(),
);
await
pub
.
get
(
context:
PubContext
.
pubGet
,
checkUpToDate:
true
,
);
expect
(
logger
.
traceText
,
contains
(
'Skipping pub get: version match.'
));
});
testWithoutContext
(
'checkUpToDate does not skip pub get if the package config is newer than the pubspec '
'but the current framework version is not the same as the last version'
,
()
async
{
final
FakeProcessManager
processManager
=
FakeProcessManager
.
list
(<
FakeCommand
>[
const
FakeCommand
(
command:
<
String
>[
'bin/cache/dart-sdk/bin/pub'
,
'--verbosity=warning'
,
'get'
,
'--no-precompile'
,
])
]);
final
BufferLogger
logger
=
BufferLogger
.
test
();
final
MemoryFileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'.dart_tool/package_config.json'
).
createSync
(
recursive:
true
);
fileSystem
.
file
(
'.dart_tool/version'
).
writeAsStringSync
(
'a'
);
fileSystem
.
file
(
'version'
).
writeAsStringSync
(
'b'
);
final
Pub
pub
=
Pub
(
fileSystem:
fileSystem
,
logger:
logger
,
processManager:
processManager
,
usage:
MockUsage
(),
platform:
FakePlatform
(
environment:
const
<
String
,
String
>{},
),
botDetector:
const
BotDetectorAlwaysNo
(),
);
await
pub
.
get
(
context:
PubContext
.
pubGet
,
checkUpToDate:
true
,
);
expect
(
processManager
.
hasRemainingExpectations
,
false
);
expect
(
fileSystem
.
file
(
'.dart_tool/version'
).
readAsStringSync
(),
'b'
);
});
testWithoutContext
(
'checkUpToDate does not skip pub get if the package config is newer than the pubspec '
'but the current framework version does not exist yet'
,
()
async
{
final
FakeProcessManager
processManager
=
FakeProcessManager
.
list
(<
FakeCommand
>[
const
FakeCommand
(
command:
<
String
>[
'bin/cache/dart-sdk/bin/pub'
,
'--verbosity=warning'
,
'get'
,
'--no-precompile'
,
])
]);
final
BufferLogger
logger
=
BufferLogger
.
test
();
final
MemoryFileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'.dart_tool/package_config.json'
).
createSync
(
recursive:
true
);
fileSystem
.
file
(
'version'
).
writeAsStringSync
(
'b'
);
final
Pub
pub
=
Pub
(
fileSystem:
fileSystem
,
logger:
logger
,
processManager:
processManager
,
usage:
MockUsage
(),
platform:
FakePlatform
(
environment:
const
<
String
,
String
>{},
),
botDetector:
const
BotDetectorAlwaysNo
(),
);
await
pub
.
get
(
context:
PubContext
.
pubGet
,
checkUpToDate:
true
,
);
expect
(
processManager
.
hasRemainingExpectations
,
false
);
expect
(
fileSystem
.
file
(
'.dart_tool/version'
).
readAsStringSync
(),
'b'
);
});
testWithoutContext
(
'checkUpToDate does not skip pub get if the package config does not exist'
,
()
async
{
final
MemoryFileSystem
fileSystem
=
MemoryFileSystem
.
test
();
final
FakeProcessManager
processManager
=
FakeProcessManager
.
list
(<
FakeCommand
>[
FakeCommand
(
command:
const
<
String
>[
'bin/cache/dart-sdk/bin/pub'
,
'--verbosity=warning'
,
'get'
,
'--no-precompile'
,
],
onRun:
()
{
fileSystem
.
file
(
'.dart_tool/package_config.json'
).
createSync
(
recursive:
true
);
})
]);
final
BufferLogger
logger
=
BufferLogger
.
test
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'version'
).
writeAsStringSync
(
'b'
);
final
Pub
pub
=
Pub
(
fileSystem:
fileSystem
,
logger:
logger
,
processManager:
processManager
,
usage:
MockUsage
(),
platform:
FakePlatform
(
environment:
const
<
String
,
String
>{},
),
botDetector:
const
BotDetectorAlwaysNo
(),
);
await
pub
.
get
(
context:
PubContext
.
pubGet
,
checkUpToDate:
true
,
);
expect
(
processManager
.
hasRemainingExpectations
,
false
);
expect
(
fileSystem
.
file
(
'.dart_tool/version'
).
readAsStringSync
(),
'b'
);
});
testWithoutContext
(
'checkUpToDate does not skip pub get if the package config is older that the pubspec'
,
()
async
{
final
FakeProcessManager
processManager
=
FakeProcessManager
.
list
(<
FakeCommand
>[
const
FakeCommand
(
command:
<
String
>[
'bin/cache/dart-sdk/bin/pub'
,
'--verbosity=warning'
,
'get'
,
'--no-precompile'
,
])
]);
final
BufferLogger
logger
=
BufferLogger
.
test
();
final
MemoryFileSystem
fileSystem
=
MemoryFileSystem
.
test
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'.dart_tool/package_config.json'
)
..
createSync
(
recursive:
true
)
..
setLastModifiedSync
(
DateTime
(
1991
));
fileSystem
.
file
(
'version'
).
writeAsStringSync
(
'b'
);
final
Pub
pub
=
Pub
(
fileSystem:
fileSystem
,
logger:
logger
,
processManager:
processManager
,
usage:
MockUsage
(),
platform:
FakePlatform
(
environment:
const
<
String
,
String
>{},
),
botDetector:
const
BotDetectorAlwaysNo
(),
);
await
pub
.
get
(
context:
PubContext
.
pubGet
,
checkUpToDate:
true
,
);
expect
(
processManager
.
hasRemainingExpectations
,
false
);
expect
(
fileSystem
.
file
(
'.dart_tool/version'
).
readAsStringSync
(),
'b'
);
});
testWithoutContext
(
'pub get 69'
,
()
async
{
String
error
;
...
...
@@ -390,7 +209,6 @@ void main() {
}
),
);
fileSystem
.
file
(
'version'
).
createSync
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'.dart_tool/package_config.json'
)
..
createSync
(
recursive:
true
)
...
...
@@ -419,7 +237,6 @@ void main() {
}
),
);
fileSystem
.
file
(
'version'
).
createSync
();
fileSystem
.
file
(
'pubspec.yaml'
).
createSync
();
fileSystem
.
file
(
'.dart_tool/package_config.json'
)
..
createSync
(
recursive:
true
)
...
...
@@ -560,7 +377,6 @@ void main() {
botDetector:
const
BotDetectorAlwaysNo
()
);
fileSystem
.
file
(
'version'
).
createSync
();
// the good scenario: .packages is old, pub updates the file.
fileSystem
.
file
(
'.dart_tool/package_config.json'
)
..
createSync
(
recursive:
true
)
...
...
packages/flutter_tools/test/src/throwing_pub.dart
View file @
f1cdf2e6
...
...
@@ -30,7 +30,6 @@ class ThrowingPub implements Pub {
bool
skipPubspecYamlCheck
=
false
,
bool
generateSyntheticPackage
=
false
,
String
flutterRootOverride
,
bool
checkUpToDate
=
false
,
})
{
throw
UnsupportedError
(
'Attempted to invoke pub during test.'
);
}
...
...
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