Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Unified Diff: pkg/analysis_server/test/services/index/store/temporary_folder_file_manager_test.dart

Issue 1801883002: Remove old index and search implementations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/services/index/store/temporary_folder_file_manager_test.dart
diff --git a/pkg/analysis_server/test/services/index/store/temporary_folder_file_manager_test.dart b/pkg/analysis_server/test/services/index/store/temporary_folder_file_manager_test.dart
deleted file mode 100644
index a6974aaa582bf87f86a13a4762e005eac688e0ae..0000000000000000000000000000000000000000
--- a/pkg/analysis_server/test/services/index/store/temporary_folder_file_manager_test.dart
+++ /dev/null
@@ -1,90 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library test.services.src.index.store.temporary_folder_file_mananer;
-
-import 'dart:io';
-
-import 'package:analysis_server/src/services/index/store/temporary_folder_file_manager.dart';
-import 'package:path/path.dart';
-import 'package:test_reflective_loader/test_reflective_loader.dart';
-import 'package:unittest/unittest.dart';
-
-import '../../../utils.dart';
-
-main() {
- initializeTestEnvironment();
- defineReflectiveTests(_SeparateFileManagerTest);
-}
-
-@reflectiveTest
-class _SeparateFileManagerTest {
- TemporaryFolderFileManager fileManager;
-
- void setUp() {
- fileManager = new TemporaryFolderFileManager();
- }
-
- void tearDown() {
- fileManager.clear();
- }
-
- test_clear() {
- String name = "42.index";
- // create the file
- return fileManager.write(name, <int>[1, 2, 3, 4]).then((_) {
- // check that the file exists
- expect(_existsSync(name), isTrue);
- // clear
- fileManager.clear();
- expect(_existsSync(name), isFalse);
- });
- }
-
- test_delete_doesNotExist() {
- return fileManager.write('other.index', <int>[1, 2, 3, 4]).then((_) {
- String name = "42.index";
- fileManager.delete(name);
- });
- }
-
- test_delete_noDirectory() {
- String name = "42.index";
- fileManager.delete(name);
- }
-
- test_outputInput() {
- String name = "42.index";
- // create the file
- return fileManager.write(name, <int>[1, 2, 3, 4]).then((_) {
- // check that that the file exists
- expect(_existsSync(name), isTrue);
- // read the file
- return fileManager.read(name).then((bytes) {
- expect(bytes, <int>[1, 2, 3, 4]);
- // delete
- fileManager.delete(name);
- // the file does not exist anymore
- return fileManager.read(name).then((bytes) {
- expect(bytes, isNull);
- });
- });
- });
- }
-
- test_read_noDirectory() {
- String name = "42.index";
- return fileManager.read(name).then((bytes) {
- expect(bytes, isNull);
- });
- }
-
- bool _existsSync(String name) {
- Directory directory = fileManager.test_directory;
- if (directory == null) {
- return false;
- }
- return new File(join(directory.path, name)).existsSync();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698